2017-03-14 12:25:45 +00:00
|
|
|
|
2020-06-18 20:31:03 +00:00
|
|
|
{% extends 'sample/templates/index.html' %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="list-posts">
|
|
|
|
{% for page in section.pages %}
|
|
|
|
<article>
|
|
|
|
<h3 class="post__title"><a href="{{ page.permalink }}">{{ page.title }}</a></h3>
|
|
|
|
</article>
|
|
|
|
{% endfor %}
|
2017-03-14 12:25:45 +00:00
|
|
|
</div>
|
2020-09-02 07:41:51 +00:00
|
|
|
<!-- Next line is meant to test inner html chars (see https://github.com/getzola/zola/issues/1152) -->
|
|
|
|
<p> <<< </p>
|
2020-06-18 20:31:03 +00:00
|
|
|
{% endblock content %}
|
2020-06-18 20:29:25 +00:00
|
|
|
|
|
|
|
{% block script %}
|
|
|
|
<script src="{{ get_url(path="scripts/hello.js") | safe }}"
|
|
|
|
integrity="sha384-{{ get_file_hash(path="scripts/hello.js") }}"></script>
|
|
|
|
{% endblock script %}
|