Files
xrpl-dev-portal/tool/template-landing-children.html
2019-06-13 12:07:02 -07:00

31 lines
721 B
HTML

{% extends "template-base.html" %}
{% block main %}
{% if content %}
<article class="pt-3 p-md-3">
<div class='content'>
{{ content }}
</div>
</article>
<section class="pt-3 p-md-3">
<h2>Children of this page:</h2>
{% set show_blurbs = True %}
{% set depth= 1 %}
{% include 'template-page-children.html' %}
</section>
{% else %}
<section class="pt-3 p-md-3">
<article class="content">
<h1 id="main-page-header">{{ currentpage.name }}</h1>
<p class="blurb">{{ currentpage.blurb }}</p>
{% set show_blurbs = True %}
{% set depth= 1 %}
{% include 'template-page-children.html' %}
</article>
</section>
{% endif %}
{% endblock %}