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.
32 lines
668 B
32 lines
668 B
2 years ago
|
{{ 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" . }}
|