remove a target

This commit is contained in:
June Hardy 2021-04-27 10:07:35 +02:00
parent 9c40ac5a02
commit bc736fe6da
1 changed files with 8 additions and 8 deletions

View File

@ -29,39 +29,39 @@
{% for h2 in toc %}
{% if h2.children %}
{% for h3 in h2.children %}
<a class="link" href="{{h3.title | safe}}" target="_blank">{{ h2.title }}</a>
<a class="link" href="{{h3.title | safe}}">{{ h2.title }}</a>
{% endfor %}
{% endif %}
{% endfor %}
<div id="social-links">
{% if page.extra.instagram %}
<a href="{{ page.extra.instagram }}" title="Instagram" target="_blank">
<a href="{{ page.extra.instagram }}" title="Instagram">
<div class="social" id="instagram"></div>
</a>
{% endif %}
{% if page.extra.liberapay %}
<a href="{{ page.extra.liberapay }}" title="Liberapay" target="_blank">
<a href="{{ page.extra.liberapay }}" title="Liberapay">
<div class="social" id="liberapay"></div>
</a>
{% endif %}
{% if page.extra.linkedin %}
<a href="{{ page.extra.linkedin }}" title="LinkedIn" target="_blank">
<a href="{{ page.extra.linkedin }}" title="LinkedIn">
<div class="social" id="linkedin"></div>
</a>
{% endif %}
{% if page.extra.mastodon %}
<a href="{{ page.extra.mastodon }}" title="Mastodon" target="_blank">
<a href="{{ page.extra.mastodon }}" title="Mastodon">
<div class="social" id="mastodon"></div>
</a>
{% endif %}
{% if page.extra.pleroma %}
<a href="{{ page.extra.pleroma }}" title="Pleroma" target="_blank">
<a href="{{ page.extra.pleroma }}" title="Pleroma">
<div class="social" id="pleroma"></div>
</a>
{% endif %}
{% if page.extra.twitter %}
<a href="{{ page.extra.twitter }}" title="Twitter" target="_blank">
<a href="{{ page.extra.twitter }}" title="Twitter">
<div class="social" id="twitter"></div>
</a>
{% endif %}
@ -71,7 +71,7 @@
{% endblock toc %}
<footer>
Powered by <a href="https://getzola.org" target="_blank">Zola</a> / <a href="https://github.com/june-coloc/ligilo" target="_blank">ligilo</a>
Powered by <a href="https://getzola.org">Zola</a> / <a href="https://github.com/june-coloc/ligilo">ligilo</a>
</footer>
</body>
</html>