Files
spothole/templates/help.html
T

44 lines
2.1 KiB
HTML

{% extends "base.html" %}
{% block content %}
<div id="info-container" class="mt-4">
<h2>Help and Information</h2>
<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. (If that sounds like nonsense to you, I recommend
starting with the <a href="/help/faq">FAQ</a>!)</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/usage">How to use Spothole</a>
<ul>
{% if telnet_server_enabled %}
<li><a href="/help/usage/telnet">Connecting via Telnet</a></li>
{% end %}
<li><a href="/help/usage/clients">Writing your own Client</a></li>
<li><a href="/help/usage/embedding">Embedding Spothole in Another Website</a></li>
<li><a href="/help/usage/running">Running your own Server</a></li>
<ul>
<li><a href="/help/usage/systemd">systemd Configuration</a></li>
<li><a href="/help/usage/nginx">nginx Reverse Proxy Configuration</a></li>
<li><a href="/help/usage/docker">Running using Docker</a></li>
<li><a href="/help/usage/multicluster">Multiple Cluster Nodes with Different Settings</a></li>
</ul>
<li><a href="/help/usage/modifying">Modifying the Source Code</a></li>
</ul>
</li>
<li><a href="/help/sources">Supported Data Sources</a></li>
<li><a href="/help/faq">Frequently Asked Questions (FAQ)</a></li>
<li><a href="/apidocs">API Documentation</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 %}