Skip to content
Snippets Groups Projects
Verified Commit 17add3fe authored by Jake's avatar Jake
Browse files

added index.html template

parent c505d36c
No related branches found
No related tags found
No related merge requests found
Pipeline #313278 passed
{% extends "page.html" %}
{% block page_footer %}
{% endblock %}
......@@ -22,9 +22,12 @@
{% block content %}
<article>
{% block page_header %}
<header>
<h1>{{ page.title }}</h1>
</header>
{% endblock %}
{% block page_content %}
{%- call(s) get.metadata_entry(page.slug, l, 'before') -%}
{{ render.sections(s, l) }}
{%- endcall -%}
......@@ -32,6 +35,8 @@
{%- call(s) get.metadata_entry(page.slug, l, 'after') -%}
{{ render.sections(s, l) }}
{%- endcall -%}
{% endblock %}
{% block page_footer %}
<footer>
{%- if page.authors -%}
<address>
......@@ -71,5 +76,6 @@
</ul>#}
{{ t[l].page.languages_suffix }}
</footer>
{% endblock %}
</article>
{% endblock %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment