Files
xrpl-dev-portal/tool/template-landing-children.html
2020-06-23 13:03:50 -07:00

34 lines
802 B
HTML

{% extends "template-base.html" %}
{% block main %}
{% if content %}
<section class="pt-3 p-md-3">
<article class="content">
{{ content }}
{% set show_blurbs = True %}
{% set depth= 1 %}
{% include 'template-page-children.html' %}
</article>
</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 %}
{% block endbody %}
<script type="application/javascript">
gtag('config', 'UA-157720658-3', {'content_group1': 'Hub Pages'});
</script>
{% endblock %}