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 %} {% for h2 in toc %}
{% if h2.children %} {% if h2.children %}
{% for h3 in 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 %} {% endfor %}
{% endif %} {% endif %}
{% endfor %} {% endfor %}
<div id="social-links"> <div id="social-links">
{% if page.extra.instagram %} {% 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> <div class="social" id="instagram"></div>
</a> </a>
{% endif %} {% endif %}
{% if page.extra.liberapay %} {% 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> <div class="social" id="liberapay"></div>
</a> </a>
{% endif %} {% endif %}
{% if page.extra.linkedin %} {% 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> <div class="social" id="linkedin"></div>
</a> </a>
{% endif %} {% endif %}
{% if page.extra.mastodon %} {% 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> <div class="social" id="mastodon"></div>
</a> </a>
{% endif %} {% endif %}
{% if page.extra.pleroma %} {% 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> <div class="social" id="pleroma"></div>
</a> </a>
{% endif %} {% endif %}
{% if page.extra.twitter %} {% 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> <div class="social" id="twitter"></div>
</a> </a>
{% endif %} {% endif %}
@ -71,7 +71,7 @@
{% endblock toc %} {% endblock toc %}
<footer> <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> </footer>
</body> </body>
</html> </html>