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-16 04:12:12 +00:00
|
|
|
<span> and </span>
|
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-10-21 06:26:16 +00:00
|
|
|
{% endfor -%}
|
2022-08-08 04:31:56 +00:00
|
|
|
{% endblock main_content %}
|