- Combine app.js and functions.js - Rename functions.js to app.js - Rename variables.js to globals.js - Remove global.js and add setup call to screen template - Use local jquery in old templates
19 lines
No EOL
577 B
Text
19 lines
No EOL
577 B
Text
<!-- demo.default.template -->
|
|
{% extends "hippie/_default.njk" %}
|
|
|
|
{% block meta %}
|
|
{% include "demo/partials/_meta.njk" %}
|
|
<base href="/">
|
|
{% endblock %}
|
|
|
|
{% block links %}
|
|
{{ super() }}
|
|
<link rel="stylesheet" type="text/css" media="all" href="{{ pageBase }}css/demo.css"/>
|
|
{# <link rel="stylesheet" type="text/css" media="all" href="css/demo.css"/> #}
|
|
{# <link rel="stylesheet" type="text/css" media="all" href="{{ pageBase | subdir(2) }}css/demo.css"/> #}
|
|
{% endblock %}
|
|
|
|
{% block script %}
|
|
{{ super() }}
|
|
<script src="/vendor/jquery.min.js"></script>
|
|
{% endblock %} |