Files
xrpl-dev-portal/tool/template-subcat-landing.html
2018-05-03 18:31:13 -07:00

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 %}