You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
668 B
31 lines
668 B
{{ partial "header.html" . }} |
|
|
|
{{ partial "content_header.html" . }} |
|
|
|
<body class="page-body boxed-container"> |
|
<main role="main" class="flex-shrink-0"> |
|
<div class="container"> |
|
<h1 class="mt-5">{{ .Title }}</h1> |
|
<div class="content"> |
|
{{ .Content | markdownify | safeHTML }} |
|
</div> |
|
</div> |
|
</main> |
|
|
|
<style> |
|
.content { |
|
font-size: 1.25rem; |
|
} |
|
|
|
.content h1, |
|
.content h2, |
|
.content h3, |
|
.content h4 { |
|
margin: 15px 10px 5px; |
|
} |
|
|
|
</style> |
|
|
|
{{ partial "content_footer.html" . }} |
|
|
|
{{ partial "footer.html" . }}
|
|
|