mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-19 19:25:51 +00:00
27 lines
698 B
HTML
27 lines
698 B
HTML
{% extends "template-base.html" %}
|
|
|
|
{% block sidebar %}
|
|
{% if currentpage.sidebar != "disabled" %}
|
|
|
|
{% include "template-sidebar_nav.html" %}
|
|
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block main %}
|
|
<h1 class="main-page-header">{{ currentpage.name }}</h1>
|
|
|
|
<div class='content'>
|
|
<h2>Pages in this subcategory:</h2>
|
|
<ul class="subcat_pagelist">
|
|
{% for page in pages %}
|
|
{% if page.category == currentpage.category and
|
|
page.subcategory == currentpage.subcategory and
|
|
page.name != currentpage.name %}
|
|
<li><a href="{{page.html}}">{{page.name}}</a></li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endblock %}
|