1
0

fixes + readme

* correctif liens pocket
* nommage des endblocks
* réadmet + ajout capture
This commit is contained in:
Jérémie Ducastel
2015-08-10 13:37:36 +02:00
parent dfe668a992
commit 90d68a9a4b
13 changed files with 56 additions and 60 deletions

View File

@ -22,29 +22,30 @@
</head>
{# TODO indentation, commentaires #}
{# FIXME appels javascript ko ? #}
<body>{% block body %}
<div id="grid" class="ui stackable grid">
{% block header %}<header id="header" class="sixteen wide column">
<a href="/" class="ui header title">
{{ SITENAME }}
{% if SITESUBTITLE %}<small class="subtitle">{{ SITESUBTITLE }}</small>{% endif %}
</a>
</header>
{% endblock %}
{% block header %}<header id="header" class="sixteen wide column">
<a href="/" class="ui header title">
{{ SITENAME }}
{% if SITESUBTITLE %}<small class="subtitle">{{ SITESUBTITLE }}</small>{% endif %}
</a>
</header>
{% endblock header %}
{# pages (changing) content #}
{% block local %}<div id="local" class="fourteen wide computer column">
<article class="ui segment">
<p>hello content</p>
</article>
</div>{% endblock %}
{# global / fixed content #}
{% block global %}
{% include "inc/global-navs.aside.html" %}
{% endblock %}
{% endblock %}</div>{# end grid #}
<script src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/jquery/jquery.min.js"></script>
<script src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/semantic-ui/semantic.min.js"></script>
{# pages (changing) content #}
{% block local %}<div id="local" class="fourteen wide computer twelve wide tablet column">
<article class="ui segment">
<p>hello content</p>
</article>
</div>{% endblock local %}
{# global / fixed content #}
{% block global %}
{% include "inc/global-navs.aside.html" %}
{% endblock global %}
</div>{% endblock body %}
{# FIXME appels javascript ko ? #}
{#}<script src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/jquery/jquery.min.js"></script>
<script src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/semantic-ui/semantic.min.js"></script>#}
</body>
</html>