Browse Source

Add rel=me to links

main
Georg Krause 2 years ago
parent
commit
56448ef765
No known key found for this signature in database GPG Key ID: FD479B9A4D48E632
  1. 2
      alchemy/templates/include/header.html

2
alchemy/templates/include/header.html

@ -27,7 +27,7 @@ fab fa-{{icon}}
{% if LINKS or (DISPLAY_PAGES_ON_MENU and pages) or ICONS %}
<ul class="list-inline">
{% for title, link in LINKS %}
<li class="list-inline-item"><a href="{{ url(link) }}" target="_blank">{{ title }}</a></li>
<li class="list-inline-item"><a rel="me" href="{{ url(link) }}" target="_blank">{{ title }}</a></li>
{% endfor %}
{% if DISPLAY_PAGES_ON_MENU %}
{% for page in pages %}

Loading…
Cancel
Save