dip/templates/index.html
Paul Lecuq fc4b4cc2e6
All checks were successful
continuous-integration/drone/push Build is passing
added asn, fixed bugs
2022-08-19 20:36:59 +02:00

39 lines
875 B
HTML

<html>
{{ template "head.html" .}}
<body>
<div id="dip_main_div">
<h1 class="dip_h1">{{ .Title }}</h1>
<table class="uk-table uk-table-striped uk-table-hover">
<caption>IP informations</caption>
<tr>
<td>IP</td>
<td>{{ "{{" }} dip.ip {{ "}}" }}</td>
</tr>
<tr>
<td>Reverse DNS</td>
<td>{{ "{{" }} dip.hostname {{ "}}" }}</td>
</tr>
<tr>
<td>City</td>
<td>{{ "{{" }} dip.city {{ "}}" }}</td>
</tr>
<tr>
<td>Country</td>
<td>{{ "{{" }} dip.country {{ "}}" }}</td>
</tr>
<tr>
<td>ASN id</td>
<td>{{ "{{" }} dip.asn.id {{ "}}" }}</td>
</tr>
<tr>
<td>ASN name</td>
<td>
{{ "{{" }} dip.asn.name {{ "}}" }}
</td>
</tr>
</div>
{{ template "footer_js.html" .}}
</body>
</html>