Recursive tree version

This commit is contained in:
Magnus Åhall 2026-02-24 17:21:55 +01:00
parent 42c5d43610
commit 97058d036d
8 changed files with 599 additions and 134 deletions

View file

@ -1,13 +1,12 @@
{{ define "page" }}
<script type="module">
import { Application } from "/js/{{ .Data.VERSION }}/dns.mjs"
const app = new Application()
window._app = new Application({{ .Data.DNSRecords }})
</script>
<h1>{{ .Data.Identity }}</h1>
<div class="records-tree">
{{ .Data.Tree }}
<div id="records-tree">
</div>
{{ end }}