www-from-model/layouts/_partials/home/page.html
Michael Hanke 25ea495559
All checks were successful
Deploy on webserver / Build site and deploy on success (push) Successful in 36s
rf: minor visual tuning
2026-03-09 20:09:47 +01:00

25 lines
858 B
HTML

<article class="prose max-w-full dark:prose-invert">
{{ if .Param "graphRootNodePID" | default false }}
<script>
const limitGraphRootNodeId = '{{ .Param "graphRootNodePID" }}';
</script>
{{ end }}
<script type="module" crossorigin src="/graph.js"></script>
<div class="relative">
{{ if .Param "graphDescription" | default false }}
<p>{{ .Param "graphDescription" }}</p>
{{ end }}
<div id="sigma-node-type-controls" class="absolute z-10 left-2">
<div id="sigma-controls-list"></div>
</div>
<a href="/explore" class="p-1 absolute left-2 bottom-2 z-20">Click to explore&hellip;</a>
<div id="sigma-container" class="w-full h-[40vh] m-0 p-0 bg-neutral-100 dark:bg-neutral-600"></div>
</div>
<section>{{ .Content | emojify }}</section>
</article>
<section>
{{ partial "recent-articles.html" . }}
</section>