legacy-dotfiles/templates/links/links.html
2011-10-17 01:34:04 +02:00

20 lines
416 B
HTML

{% extends "base.html" %}
{% block subtitle %}
links
{% endblock %}
{% block content %}
<div class="container">
<div class="header">
<span class="title">links</span>
</div>
{% if bookmarklist %}
{% for link in bookmarklist %}
<a href="{{ link.url }}">{{ link.name }}</a><br/>
{% endfor %}
{% else %}
No links, no where...
{% endif %}
</div>
{% endblock %}