mirror of
https://codeberg.org/slatian/service.echoip-slatecave.git
synced 2024-11-10 08:37:21 +01:00
14 lines
432 B
HTML
14 lines
432 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
<section>
|
||
|
<p>The page you were looking for isn't here …</p>
|
||
|
<p>You may have been interested in …</p>
|
||
|
<ul>
|
||
|
<li><a href="{{ extra.base_url}}">The homepage</a></li>
|
||
|
<li>The <code>/ip/</code> or <code>/dig/</code> endpoints.</li>
|
||
|
<li><a href="{{ extra.base_url }}/ua">The <code>/ua</code> endpoint wich just displays your user agent.</a></li>
|
||
|
</ul>
|
||
|
</section>
|
||
|
{% endblock %}
|