13 lines
239 B
Go Template
13 lines
239 B
Go Template
{{ define "page" }}
|
|
<script type="module">
|
|
import { Application } from "/js/{{ .Data.VERSION }}/dns.mjs"
|
|
const app = new Application()
|
|
</script>
|
|
|
|
<h1>{{ .Data.Identity }}</h1>
|
|
|
|
<div class="records-tree">
|
|
{{ .Data.Tree }}
|
|
</div>
|
|
|
|
{{ end }}
|