23 lines
389 B
HTML
23 lines
389 B
HTML
{{ partial "htmlhead" . }}
|
|
</head>
|
|
|
|
<body>
|
|
{{ partial "navbar" .}}
|
|
|
|
<div class="container">
|
|
{{ if isset .Params "description" }}
|
|
<div class="jumbotron">
|
|
<h1 id="title" class="display-4 mb-4">{{ .Title }}</h1>
|
|
|
|
{{ .Params.description | markdownify }}
|
|
</div>
|
|
{{ else }}
|
|
<h1 class="display-4 mb-4">{{ .Title }}</h1>
|
|
{{ end }}
|
|
|
|
{{.Content}}
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|