Personal-Site/layouts/_default/single.html
2018-07-31 14:32:35 -07:00

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>