mirror of
https://gitea.com/gitea/theme.git
synced 2026-02-12 07:44:56 +08:00
20 lines
397 B
HTML
20 lines
397 B
HTML
{{ partial "header.html" . }}
|
|
{{ partial "navbar.html" . }}
|
|
|
|
<section class="section">
|
|
<div class="container is-centered page">
|
|
<div class="columns">
|
|
<div class="column is-one-quarter">
|
|
{{ partial "menu" . }}
|
|
</div>
|
|
<div class="column is-three-quarters">
|
|
<div class="content">
|
|
{{ .Content }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
{{ partial "footer.html" . }}
|