Files
xrpl-dev-portal/tool/template-doc.html
mDuo13 2ade517b60 Remove TypeForm doc usefulness survey
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.
2019-08-30 13:50:45 -07:00

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