mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-20 03:35:51 +00:00
- better responsive design - move breadcrumbs into nav-header - proper terms & privacy policy links - add "Related Projects" to index
90 lines
3.2 KiB
HTML
90 lines
3.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<meta name="viewport" content="width=device-width">
|
|
|
|
<title>{{ currentpage.name }} - XRP Ledger Developer Portal</title>
|
|
|
|
<!--[if lt IE 9]>
|
|
<script src="/dist/js/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
<script src="/dist/js/respond/1.4.2/respond.min.js"></script>
|
|
<![endif]-->
|
|
|
|
|
|
<!-- favicon -->
|
|
<link rel="icon" href="favicon.ico" type="image/x-icon">
|
|
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
|
|
|
|
<!-- jQuery -->
|
|
<script src="assets/vendor/jquery-1.11.1.min.js"></script>
|
|
|
|
<!-- Custom Stylesheets. ripple.css includes bootstrap, font stuff -->
|
|
<link href="assets/css/ripple.css" rel="stylesheet" />
|
|
<link href="assets/css/devportal.css" rel="stylesheet" />
|
|
|
|
<!-- Bootstrap JS -->
|
|
<script src="assets/vendor/bootstrap.min.js"></script>
|
|
|
|
<!-- fontawesome icons -->
|
|
<link rel="stylesheet" href="assets/vendor/fontawesome/css/font-awesome.min.css" />
|
|
|
|
{% block head %}
|
|
|
|
{% endblock %}
|
|
|
|
</head>
|
|
|
|
<body class="{% block bodyclasses %} xrp-ledger-dev-portal sidebar-primary{% endblock %}">
|
|
<header role="banner" class="banner navbar navbar-default navbar-fixed-top initial_header">
|
|
<div class="container">
|
|
<div class="navbar-header">
|
|
<a href="index.html" class="navbar-brand">
|
|
<img src="assets/img/ripple-logo-color.png" class="logo">
|
|
<span class="brand-text">XRP Developers</span>
|
|
</a>
|
|
</div><!-- /.navbar-header -->
|
|
<div class="nav">
|
|
{% block breadcrumbs %}
|
|
<ul class="breadcrumb">
|
|
<li><a href="index.html" style="display: none;"> </a></li>
|
|
{% if currentpage.category %}
|
|
<li class="active"><a class="dev_heading" href="{{ (pages|selectattr('category', 'equalto', currentpage.category)|first).html }}">{{ currentpage.category }}</a></li>
|
|
{% endif %}
|
|
<li class="active">{{ currentpage.name }}</li>
|
|
</ul>
|
|
{% endblock %}
|
|
<div class="draft-warning">DRAFT PAGE</div>
|
|
<div class="github-edit-wrap">
|
|
{% if currentpage.md is defined %}
|
|
{% set githuburl = "https://github.com/ripple/ripple-dev-portal/edit/master/content/" + currentpage.md %}
|
|
{% elif currentpage.template is defined %}
|
|
{% set githuburl = "https://github.com/ripple/ripple-dev-portal/edit/master/tool/" + currentpage.template %}
|
|
{% else %}
|
|
{% set githuburl = "https://github.com/ripple/ripple-dev-portal/" %}
|
|
{% endif %}
|
|
<a href="{{githuburl}}" class="github-edit">Edit on GitHub</a>
|
|
</div><!-- /.github-edit -->
|
|
</div><!-- /.nav -->
|
|
|
|
</div><!-- /.container -->
|
|
|
|
</header>
|
|
|
|
|
|
<div class="wrap container" role="document" id="main_content_wrapper">
|
|
<aside class="sidebar" role="complementary">
|
|
{% block sidebar %}{% endblock %}
|
|
</aside>
|
|
<main class="main" role="main">
|
|
{% block main %}{% endblock %}
|
|
</main>
|
|
</div>
|
|
|
|
{% include 'template-footer.html' %}
|
|
|
|
{% block endbody %}{% endblock %}
|
|
</body>
|
|
</html>
|