1
Fork 0

Correct template name to match standards

This commit is contained in:
Jake Howard 2018-07-30 08:57:06 +01:00
parent 2db35dd514
commit 2be29ac422
Signed by: jake
GPG Key ID: 57AFB45680EDD477
3 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
{% endif %}
<h1 class="display-5">{{ page.title }}</h1>
<h5 class="my-3">Subtitle</h5>
<p>{% include "common/content_details.html" with page=page %}</p>
<p>{% include "common/content-details.html" with page=page %}</p>
<hr />
<div class="content mt-3">
{% include_block page.body %}

View File

@ -25,7 +25,7 @@
<a href="{{ child.url }}">
<h5 class="my-0">{{ child.title }}</h5>
</a>
<small>{% include "common/content_details.html" with page=child %}</small>
<small>{% include "common/content-details.html" with page=child %}</small>
<p>{{ child.get_short_body }}</p>
</div>
</div>