Create data-lab layout

This commit is contained in:
Sam 2024-08-07 00:36:28 +01:00
parent 483418af7d
commit 5769d7cca0
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,10 @@
<!doctype html>
<head>
{{ partial "head.html" . }}
</head>
<script
type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"
></script>
<script src="https://cdn.jsdelivr.net/npm/echarts@5.5.1/dist/echarts.min.js"></script>
{{ template "partials/body.html" . }}

View File

@ -0,0 +1,5 @@
{{ define "main" }}
<div class="page-content">
{{ .Content }}
</div>
{{ end }}