13 lines
178 B
HTML
13 lines
178 B
HTML
|
{{ define "main" }}
|
||
|
|
||
|
<!-- Main Title -->
|
||
|
{{ if .Title }}
|
||
|
<h1 class="main-title">{{ .Title }}</h1>
|
||
|
{{ end }}
|
||
|
|
||
|
<section id="homepage-content">
|
||
|
{{ .Content }}
|
||
|
</section>
|
||
|
|
||
|
{{ end }}
|