mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-19 19:25:51 +00:00
34 lines
802 B
HTML
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 %}
|