summaryrefslogtreecommitdiffstats
path: root/templates/shortcodes/meta.html
blob: 1dcb70a1c2d67663b66a803f81384d7225dc750f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{# meta links #}
{% import "macros.html" as macros %}
<address>
  <dl>
    {%- for item in config.extra.meta -%}
      <dt>{{ item.name }}</dt>
      <dd>
        <a rel="me" href="{{ item.href }}">{{ item.display }}</a>
      </dd>
    {%- endfor -%}
  </dl>
</address>