19 lines
466 B
HTML
Executable file
19 lines
466 B
HTML
Executable file
{% extends 'inner.html' %}
|
|
|
|
{% block title %} | Links {% endblock %}
|
|
|
|
{% block extra_meta_content %}: Links {% endblock %}
|
|
|
|
{% block contentId %}
|
|
id="showContent"
|
|
{% endblock %}
|
|
|
|
{% block inner_content %}
|
|
{% for l in links %}
|
|
<p class="orange"><strong><a href="{{ l.url }}">{{ l.title }}</a></strong></p>
|
|
<br>
|
|
<p>{{ l.description }}</p>
|
|
<br><br>
|
|
{% endfor %}
|
|
{% endblock %}
|
|
|