urbstudio/urbstudio/templates/links.html
2011-10-09 22:24:50 +05:30

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 %}