Correct template name to match standards
This commit is contained in:
parent
2db35dd514
commit
2be29ac422
3 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<h1 class="display-5">{{ page.title }}</h1>
|
<h1 class="display-5">{{ page.title }}</h1>
|
||||||
<h5 class="my-3">Subtitle</h5>
|
<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 />
|
<hr />
|
||||||
<div class="content mt-3">
|
<div class="content mt-3">
|
||||||
{% include_block page.body %}
|
{% include_block page.body %}
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
<a href="{{ child.url }}">
|
<a href="{{ child.url }}">
|
||||||
<h5 class="my-0">{{ child.title }}</h5>
|
<h5 class="my-0">{{ child.title }}</h5>
|
||||||
</a>
|
</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>
|
<p>{{ child.get_short_body }}</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Reference in a new issue