2020-01-19 17:30:10 +01:00
|
|
|
<html>
|
2020-01-26 16:38:57 +01:00
|
|
|
{{ template "head.html" .}}
|
|
|
|
<body>
|
|
|
|
<div id="dip_main_div">
|
2020-01-27 21:16:08 +01:00
|
|
|
<h1 class="dip_h1">{{ .Title }}</h1>
|
2020-01-26 16:38:57 +01:00
|
|
|
<table class="uk-table uk-table-striped uk-table-hover">
|
|
|
|
<caption>IP informations</caption>
|
|
|
|
<tr>
|
|
|
|
<td>IP</td>
|
2020-03-10 14:58:59 +01:00
|
|
|
<td>{{ "{{" }} dip.ip {{ "}}" }}</td>
|
2020-01-26 16:38:57 +01:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Reverse DNS</td>
|
2020-03-10 14:58:59 +01:00
|
|
|
<td>{{ "{{" }} dip.hostname {{ "}}" }}</td>
|
2020-01-26 16:38:57 +01:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>City</td>
|
2020-03-10 14:58:59 +01:00
|
|
|
<td>{{ "{{" }} dip.city {{ "}}" }}</td>
|
2020-01-26 16:38:57 +01:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Country</td>
|
2020-03-10 14:58:59 +01:00
|
|
|
<td>{{ "{{" }} dip.country {{ "}}" }}</td>
|
2020-01-26 16:38:57 +01:00
|
|
|
</tr>
|
|
|
|
</div>
|
2020-03-10 14:58:59 +01:00
|
|
|
{{ template "footer_js.html" .}}
|
2020-01-26 16:38:57 +01:00
|
|
|
</body>
|
2020-01-20 13:57:11 +01:00
|
|
|
</html>
|