Personal-Site/layouts/_default/single.html

23 lines
389 B
HTML
Raw Normal View History

2018-05-12 16:50:36 -07:00
{{ partial "htmlhead" . }}
2018-06-11 21:42:16 -07:00
</head>
2018-05-12 16:50:36 -07:00
<body>
{{ partial "navbar" .}}
<div class="container">
{{ if isset .Params "description" }}
<div class="jumbotron">
2018-07-31 14:32:35 -07: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 16:50:36 -07:00
{{.Content}}
</div>
</body>
</html>