sito-hackit-16/themes/pelican-bootstrap3/templates/includes/links.html
Giuliano Peraz 18fa7e0c1f Adds pelican-bootstrap3 and custom css as default theme for pelican
It adds also main.css from Dieco
2016-05-20 23:38:21 +02:00

13 lines
No EOL
420 B
HTML

{% if LINKS %}
<li class="list-group-item"><h4><i class="fa fa-external-link-square fa-lg"></i><span class="icon-label">Links</span></h4>
<ul class="list-group" id="links">
{% for name, link in LINKS %}
<li class="list-group-item">
<a href="{{ link }}" target="_blank">
{{ name }}
</a>
</li>
{% endfor %}
</ul>
</li>
{% endif %}