dip/templates/index.html

28 lines
708 B
HTML
Raw Normal View History

<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>
<td>{{ "{{" }} dip.ip {{ "}}" }}</td>
2020-01-26 16:38:57 +01:00
</tr>
<tr>
<td>Reverse DNS</td>
<td>{{ "{{" }} dip.hostname {{ "}}" }}</td>
2020-01-26 16:38:57 +01:00
</tr>
<tr>
<td>City</td>
<td>{{ "{{" }} dip.city {{ "}}" }}</td>
2020-01-26 16:38:57 +01:00
</tr>
<tr>
<td>Country</td>
<td>{{ "{{" }} dip.country {{ "}}" }}</td>
2020-01-26 16:38:57 +01:00
</tr>
</div>
{{ template "footer_js.html" .}}
2020-01-26 16:38:57 +01:00
</body>
2020-01-20 13:57:11 +01:00
</html>