mirror of
https://github.com/Myzel394/amiopen.now.git
synced 2025-06-18 15:35:27 +02:00
16 lines
291 B
HTML
16 lines
291 B
HTML
{% extends "base.njk.cli.html" %} {% block main %}
|
|
<h2>Am I Open</h2>
|
|
|
|
<i>{{ ip }}</i>
|
|
|
|
{% if isOpen %}
|
|
<p>Port <strong>{{port}}</strong> is <i>open</i></p>
|
|
{% else %}
|
|
<p>Port <strong>{{port}}</strong> is <i>closed</i></p>
|
|
{% endif %}
|
|
|
|
<br />
|
|
<br />
|
|
<a href="/">To root /</a>
|
|
{% endblock %}
|