urbstudio/urbstudio/templates/links.html
2011-10-31 17:34:41 +00:00

19 lines
482 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 }}" target="_blank">{{ l.title }}</a></strong></p>
<br>
<p>{{ l.description }}</p>
<br><br>
{% endfor %}
{% endblock %}