summaryrefslogtreecommitdiffstats
path: root/templates/links/links.html
blob: b911d805b4480fde42f127dcb547fffa59d2f3de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% 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 %}