Files
xrpl-dev-portal/template/pdf-doc.html.jinja
Rome Reginelli 66b6f951fe Fix various style/template issues (#2103)
* Fix various style/template issues

- Add styles to allow fully invisible headers. These can be used to
  support anchor links in translated pages, so we can move the link_subs
  out of the dactyl-config.yml. Example in transaction-common-fields.md
- Upgrade jQuery to 3.7.1
- Add left nav to references landings for consistent navigation
- Add breadcrumbs template (previously used Dactyl built-in) which
  throws an error if you specify a parent: that doesn't exist.
  (Previously it would write a blank link; the link checker would
  report this as an error, but it wasn't obvious what the cause was.)
- Fix #2014 (special case for code blocks nested in lists).
- Fix #2096.
- Remove excessive spacing between top nav and main content, and
  re-align top of main contents in all 3 columns for docs pages.
- Reorganize _content.scss to be easier to read.

* Upgrade yarn packages (fix dependabot alerts) & rebuild CSS

* Fix NFT broken link in translation

* [ja] Properly fix NFT data link
2023-09-06 13:15:19 -07:00

44 lines
1.5 KiB
Django/Jinja

<!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 }} - {{target.display_name}}</title>
<!-- favicon -->
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<script src="{{currentpage.prefix}}assets/vendor/jquery-3.7.1.min.js"></script>
<link href="{{currentpage.prefix}}assets/css/devportal2021.css" rel="stylesheet" />
{% block head %}
{% endblock %}
</head>
<body class="xrp-ledger-dev-portal {% if currentpage.sidebar is undefined or currentpage.sidebar != "disabled" %}sidebar-primary {% endif %}{% block bodyclasses %}{% endblock %}">
<div class="container-fluid" role="document" id="main_content_wrapper">
<div class="row">
<main class="main {% if currentpage.sidebar is defined and currentpage.sidebar == "disabled" %}col-md-12{% else %}col-md-7 col-lg-6{% endif %} order-md-3 {% block mainclasses %}{% endblock %}" role="main" id="main_content_body">
{{ content }}
</main>
</div>
</div>
<footer>(Exported {{ current_time }})</footer>
<!-- Non-blocking resources -->
<!-- Bootstrap JS -->
<script src="{{currentpage.prefix}}assets/vendor/bootstrap.min.js"></script>
<!-- fontawesome icons -->
<link rel="stylesheet" href="{{currentpage.prefix}}assets/vendor/fontawesome/css/font-awesome.min.css" />
</body>
</html>