mat.services/templates/index.html

14 lines
416 B
HTML
Raw Normal View History

2022-08-08 04:31:56 +00:00
{% extends "base.html" %}
2022-10-21 06:26:16 +00:00
{%- block main_content -%}
2022-08-08 04:31:56 +00:00
{{ post_macros::page_header(title="a sadware company")}}
2022-10-21 06:26:16 +00:00
<span>also on
{%- for me in config.extra.me_links -%}
{%- if loop.last -%}
2022-11-25 22:58:48 +00:00
&#32;and&#32;
2022-10-21 06:26:16 +00:00
{%- endif %}
<a href="{{ me.url | safe }}" target="_blank" rel="me noopener noreferrer">{{ me.name }}</a>
{%- if not loop.last -%},{%- else %}
</span>
2022-08-14 02:05:48 +00:00
{%- endif -%}
2022-11-25 22:58:48 +00:00
{% endfor %}
2022-08-08 04:31:56 +00:00
{% endblock main_content %}