configui/templates/home.tmpl

32 lines
757 B
Cheetah
Raw Normal View History

2021-10-18 08:49:16 +00:00
{{define "home"}}
{{template "base/header" .}}
2021-10-18 18:38:28 +00:00
<div class="columns is-mobile is-centered">
<div class="column is-half">
<section class="section">
<container class="container is-max-desktop">
<h1 class="title">ConfigUI</h1>
</container>
</section>
2021-10-18 08:49:16 +00:00
</div>
2021-10-18 18:38:28 +00:00
</div>
<div class="tile is-ancestor mx-2">
<div class="tile is-3 is-vertical is-parent">
<div class="tile is-child box">
2021-10-19 09:28:38 +00:00
{{template "components/menu" .}}
2021-10-18 18:38:28 +00:00
</div>
<div class="tile is-child box">
<p class="title">Two</p>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child box">
<p class="title">Three</p>
2021-10-19 09:28:38 +00:00
{{template "components/editor" .}}
2021-10-18 18:38:28 +00:00
</div>
</div>
</div>
2021-10-18 08:49:16 +00:00
{{template "base/footer" .}}
{{end}}