mirror of
https://github.com/Myzel394/amiopen.now.git
synced 2025-06-18 15:35:27 +02:00
11 lines
250 B
HTML
11 lines
250 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 %} {% endblock %}
|