fix: Improve cli browser templates

This commit is contained in:
Myzel394 2024-12-16 12:15:28 +01:00
parent cab65cbefd
commit d3dcb624dd
No known key found for this signature in database
GPG Key ID: ED20A1D1D423AF3F
2 changed files with 8 additions and 6 deletions

View File

@ -14,9 +14,6 @@
<h2>Am I Open</h2> <h2>Am I Open</h2>
{% endblock %} {% endblock %}
<br />
<br />
<a href="/">To root /</a>
<br /> <br />
<ul> <ul>
<a <a
@ -24,14 +21,14 @@
target="_blank" target="_blank"
rel="noopener noreferrer" rel="noopener noreferrer"
> >
<img src="/static/github.svg" alt="GitHub" /> <img src="/static/github.svg" alt="[GitHub]" />
</a> </a>
<a <a
href="https://twitter.com/Myzel394" href="https://twitter.com/Myzel394"
target="_blank" target="_blank"
rel="noopener noreferrer" rel="noopener noreferrer"
> >
<img src="/static/twitter.svg" alt="Twitter / X" /> <img src="/static/twitter.svg" alt="[Twitter / X]" />
</a> </a>
</ul> </ul>
</main> </main>

View File

@ -7,4 +7,9 @@
<p>Port <strong>{{port}}</strong> is <i>open</i></p> <p>Port <strong>{{port}}</strong> is <i>open</i></p>
{% else %} {% else %}
<p>Port <strong>{{port}}</strong> is <i>closed</i></p> <p>Port <strong>{{port}}</strong> is <i>closed</i></p>
{% endif %} {% endblock %} {% endif %}
<br />
<br />
<a href="/">To root /</a>
{% endblock %}