13 lines
281 B
HTML
13 lines
281 B
HTML
{{ define "title" }}{{ site.Title }}{{ end }}
|
|
|
|
{{ define "main" -}}
|
|
<main>
|
|
<section class="container mx-auto px-6 mb-6 mt-6 prose">
|
|
{{ .Content }}
|
|
</section>
|
|
|
|
<section class="container mx-auto px-6 my-16">
|
|
{{ partial "services.html" }}
|
|
</section>
|
|
</main>
|
|
{{ end }}
|