mirror of
https://git.ianrenton.com/ian/spothole.git
synced 2026-09-24 16:24:32 +00:00
25 lines
992 B
HTML
25 lines
992 B
HTML
{% extends "../base.html" %}
|
|
{% block content %}
|
|
|
|
<div id="info-container" class="mt-4">
|
|
<p>Welcome to Spothole's help pages.</p>
|
|
<p>Spothole is a utility to aggregate spots from amateur radio DX clusters and xOTA spotting sites, and provide an
|
|
open JSON API as well as a website to browse the data.</p>
|
|
<p>In the sections below, you can find more information about what Spothole is, and how to use it.</p>
|
|
<ul>
|
|
<li><a href="/help/about">About Spothole</a></li>
|
|
<li><a href="/help/using">How To Use Spothole</a></li>
|
|
<li><a href="/help/faq">FAQ</a></li>
|
|
<li><a href="/apidocs">OpenAPI Specification</a></li>
|
|
<li><a href="/help/accuracy">Data Accuracy</a></li>
|
|
<li><a href="/help/privacy">Privacy</a></li>
|
|
<li><a href="/help/thanks">Thanks</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<script>$(document).ready(function () {
|
|
$("#nav-link-help").addClass("active");
|
|
}); <!-- highlight active page in nav --></script>
|
|
|
|
{% end %}
|