mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-19 19:25:51 +00:00
52 lines
2.2 KiB
HTML
52 lines
2.2 KiB
HTML
<footer class="xrpl-footer" role="contentinfo">
|
|
<section class="container-fluid card-grid card-grid-Nx1">
|
|
{% set funnels = [] %}
|
|
{% for page in pages %}
|
|
{% if page.funnel is defined and page.funnel not in funnels %}
|
|
{% set parent_page = pages|selectattr('funnel', 'defined_and_equalto', page.funnel)|first %}
|
|
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<h5><a href="{{ parent_page.html }}">{{ parent_page.name }}</a></h5>
|
|
</div><!--/.card-header-->
|
|
<div class="card-body">
|
|
{% set depth = 1 %}
|
|
{% set count = 5 %}
|
|
{% include 'template-page-children.html' %}
|
|
</div><!--/.card-body-->
|
|
</div><!--/.card -->
|
|
|
|
{% set _ = funnels.append(page.funnel) %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<h5><a href="https://ripple.com/" target="_blank">Ripple <i class="fa fa-external-link"></i></a></h5>
|
|
</div><!--/.card-header-->
|
|
<div class="card-body">
|
|
<div class="children-display">
|
|
<ul>
|
|
<li class="level-1"><a href="https://ripple.com/company/careers/" target="_blank">Ripple Careers <i class="fa fa-external-link"></i></a></li>
|
|
<li class="level-1"><a href="https://github.com/ripple/" target="_blank">Ripple on GitHub <i class="fa fa-external-link"></i></a></li>
|
|
<li class="level-1"><a href="https://ripple.com/collateral/#xrp" target="_blank">XRP Resources <i class="fa fa-external-link"></i></a></li>
|
|
</ul>
|
|
</div>
|
|
</div><!--/.card-body-->
|
|
</div><!--/.card -->
|
|
</section>
|
|
|
|
<section class="container-fluid p-5">
|
|
|
|
<div class="absolute_bottom_footer">
|
|
<span>© XRP Ledger Project 2019</span>
|
|
<span><a href="https://raw.githubusercontent.com/ripple/ripple-dev-portal/master/LICENSE">License</a></span>
|
|
</div><!-- /.absolute_bottom_footer -->
|
|
|
|
</section>
|
|
</footer>
|
|
|
|
<!-- Jump to top button -->
|
|
<a href="#main_content_wrapper" class="jump-to-top btn btn-primary btn-lg" role="button" title="Jump to top of page">Top</a>
|
|
<script type="text/javascript" src="assets/js/jump-to-top.js"></script>
|