14 lines
416 B
HTML
14 lines
416 B
HTML
{% extends "base.html" %}
|
|
{%- block main_content -%}
|
|
{{ post_macros::page_header(title="a sadware company")}}
|
|
<span>also on
|
|
{%- for me in config.extra.me_links -%}
|
|
{%- if loop.last -%}
|
|
 and 
|
|
{%- endif %}
|
|
<a href="{{ me.url | safe }}" target="_blank" rel="me noopener noreferrer">{{ me.name }}</a>
|
|
{%- if not loop.last -%},{%- else %}
|
|
</span>
|
|
{%- endif -%}
|
|
{% endfor %}
|
|
{% endblock main_content %} |