templates!

This commit is contained in:
Bel LaPointe
2022-02-14 08:50:48 -07:00
parent 7eb260bfcf
commit f0f6f2c842
5 changed files with 15 additions and 4 deletions

View File

@@ -1,19 +1,21 @@
{{ define "files" }}
<!DOCTYPE html>
<html>
<header>
<title>{{ .Title }}</title>
{{ template "imports" . }}
{{ template "_import" . }}
</header>
<body class="lr_fullscreen tb_fullscreen" onload="init(); return false;">
<br>
<div class="rows">
{{ template "searchbar" . }}
{{ template "_searchbar" . }}
<div class="columns thic_flex tb_buffer">
{{ template "filetree" . }}
{{ template "_filetree" . }}
<div class="thic_flex lr_fullscreen" style="margin-left: 1em; width: 5px;">
{{ template "editor" . }}
{{ template "_editor" . }}
</div>
</div>
</div>
</body>
</html>
{{ end }}