mirror of
https://git.ianrenton.com/ian/spothole.git
synced 2026-09-24 08:14:32 +00:00
15 lines
416 B
HTML
15 lines
416 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 %}
|