Personal-Site/layouts/_default/single.html

23 lines
389 B
HTML
Raw Normal View History

2018-05-12 23:50:36 +00:00
{{ partial "htmlhead" . }}
2018-06-12 04:42:16 +00:00
</head>
2018-05-12 23:50:36 +00:00
<body>
{{ partial "navbar" .}}
<div class="container">
{{ if isset .Params "description" }}
<div class="jumbotron">
2018-07-31 21:32:35 +00:00
<h1 id="title" class="display-4 mb-4">{{ .Title }}</h1>
{{ .Params.description | markdownify }}
</div>
{{ else }}
<h1 class="display-4 mb-4">{{ .Title }}</h1>
{{ end }}
2018-05-12 23:50:36 +00:00
{{.Content}}
</div>
</body>
</html>