allow app- and page-specific head and javascript files

This commit is contained in:
fonfon 2014-07-30 15:59:38 +03:00
parent d73c996547
commit 8e2036928d

View File

@ -47,7 +47,8 @@
<!-- CSS from previous Plinth template, not sure what to keep yet -->
{{ css|safe }}
<!-- End Plinth CSS -->
{% block app_head %}<!-- include app/module-specific static files here -->{% endblock %}
{% block app_head %}<!-- placeholder for app/module-specific head files -->{% endblock %}
{% block page_head %}<!-- placeholder for page-specific head files -->{% endblock %}
</head>
<body>
<!--[if lt IE 7]><p class=chromeframe>Your browser is <em>ancient!</em> <a href="http://mozilla.org/firefox">Upgrade to a modern version of Firefox</a> to experience this site.</p><![endif]-->
@ -170,5 +171,7 @@
{% block js_block %}
{{ js|safe }}
{% endblock %}
{% block app_js %}<!-- placeholder for app-specific js files -->{% endblock %}
{% block page_js %}<!-- placeholder for page-specific js files -->{% endblock %}
</body>
</html>