Mercurial > public > sg101
diff gpp/templates/weblinks/link_summary.html @ 1:dbd703f7d63a
Initial import of sg101 stuff from private repository.
author | gremmie |
---|---|
date | Mon, 06 Apr 2009 02:43:12 +0000 |
parents | |
children | 7e8d2dda99e3 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gpp/templates/weblinks/link_summary.html Mon Apr 06 02:43:12 2009 +0000 @@ -0,0 +1,12 @@ +{% extends 'weblinks/base.html' %} +{% block title %}Web Links: {{ title }}{% endblock %} +{% block weblinks_content %} + <h3>{{ title }}</h3> + {% if links %} + <dl> + {% for link in links %} + {% include 'weblinks/link.html' %} + {% endfor %} + </dl> + {% endif %} +{% endblock %}