17 lines
367 B
HTML
17 lines
367 B
HTML
{{ define "main" }}
|
|
<h2>{{ .Title }} </h2>
|
|
<script src="{{ .Site.Params.visNetworkJsUrl }}"></script>
|
|
<script type="module" src="{{ absLangURL "graph/graph.js" }}"></script>
|
|
<style>
|
|
#graph-container {
|
|
width: 100%;
|
|
height: 50vh;
|
|
border-radius: 0.2rem;
|
|
border: .075rem solid #bfbfbf
|
|
}
|
|
</style>
|
|
{{ .Content }}
|
|
<div id="graph-container">
|
|
</div>
|
|
{{ end }}
|