Files
spothole/templates/help/help_page.html
T

15 lines
400 B
HTML

{% extends "../base.html" %}
{% block content %}
<div id="info-container" class="mt-4">
<p class="small mb-0"><a href="/help">Spothole Help</a></p>
{% block help_content %}{% end %}
<p class="small mt-4"><a href="/help">Back</a></p>
</div>
<script>$(document).ready(function () {
$("#nav-link-help").addClass("active");
}); <!-- highlight active page in nav --></script>
{% end %}