mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-20 03:35:51 +00:00
The survey was ruining page usability by automatically scrolling the page so that the top of the survey was visible (basically, the bottom of the content). Also, TypeForm has more tracking than we'd prefer.
41 lines
970 B
HTML
41 lines
970 B
HTML
{% extends "template-base.html" %}
|
|
{% block head %}
|
|
|
|
<!-- syntax highlighting -->
|
|
<link rel="stylesheet" href="assets/vendor/docco.min.css" />
|
|
<script src="assets/vendor/highlight.min.js"></script>
|
|
|
|
<!-- expandable code samples -->
|
|
<script src="assets/js/expandcode.js"></script>
|
|
<!-- multi-code selection tabs -->
|
|
<script src="assets/js/multicodetab.js"></script>
|
|
<script>
|
|
$(document).ready(function() {
|
|
$(".multicode").minitabs();
|
|
hljs.initHighlighting();
|
|
make_code_expandable();
|
|
});
|
|
</script>
|
|
|
|
|
|
{% endblock %}
|
|
|
|
{% block main %}
|
|
<article class="pt-3 p-md-3">
|
|
<div class="content">
|
|
{{ content }}
|
|
</div>
|
|
</article>
|
|
{% endblock %}
|
|
|
|
{% block right_sidebar %}
|
|
<div class="card" id="page-toc-wrapper">
|
|
<div class="card-header">
|
|
<h4>In this document</h4>
|
|
</div>
|
|
<ul class="card-body">
|
|
{{ sidebar_content }}
|
|
</ul>
|
|
</div>
|
|
{% endblock %}
|