2023-01-01 13:20:04 -08:00
|
|
|
{{ define "main" }}
|
|
|
|
<h2>{{ .Title }} </h2>
|
2023-12-30 14:30:27 -08:00
|
|
|
<script src="{{ .Site.Params.visNetworkJsUrl }}"></script>
|
2024-06-23 14:17:15 -07:00
|
|
|
<script type="module" src="{{ absLangURL "graph/graph.js" }}"></script>
|
2023-01-01 13:20:04 -08:00
|
|
|
<style>
|
|
|
|
#graph-container {
|
|
|
|
width: 100%;
|
|
|
|
height: 50vh;
|
|
|
|
border-radius: 0.2rem;
|
|
|
|
border: .075rem solid #bfbfbf
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
{{ .Content }}
|
|
|
|
<div id="graph-container">
|
|
|
|
</div>
|
|
|
|
{{ end }}
|