view sg101/templates/weblinks/base.html @ 1018:02ae9a4a846a

ManifestStaticFilesStorage: get rid of STATIC_URL in templates.
author Brian Neal <bgneal@gmail.com>
date Sun, 06 Dec 2015 21:49:39 -0600
parents ee87ea74d46b
children 176d1550bf25
line wrap: on
line source
{% extends 'base.html' %}
{% load static from staticfiles %}
{% load weblinks_tags %}
{% block custom_css %}
<link rel="stylesheet" type="text/css" href="{% static "css/weblinks.css" %}" />
{% block weblinks_css %}{% endblock %}
{% block weblinks_js %}{% endblock %}
{% endblock %}
{% block content %}
<h2>Web Links</h2>
{% include 'weblinks/navigation.html' %}
<div class="weblinks-content">
   {% block weblinks_content %}
   {% endblock %}
</div>
{% endblock %}