22 lines
536 B
Plaintext
22 lines
536 B
Plaintext
{{ define "files" }}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<header>
|
|
<title>{{ .This.Title }}</title>
|
|
{{ template "_import" }}
|
|
</header>
|
|
<body class="lr_fullscreen tb_fullscreen" onload="init(); return false;">
|
|
<br>
|
|
<div class="rows">
|
|
{{ template "_searchbar" }}
|
|
<div class="columns thic_flex tb_buffer">
|
|
{{ template "_filetree" . }}
|
|
<div class="thic_flex lr_fullscreen" style="margin-left: 1em; width: 5px;">
|
|
{{ template "_editor" . }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
{{ end }}
|