Files
hugo-profile/layouts/_default/single.html
T
2020-08-16 12:51:49 +05:30

21 lines
536 B
HTML

<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>{{ .Title }}</title>
{{- partial "head.html" . -}}
</head>
<body>
<div class="container col-md-6 col-md-offset-3">
<h1>{{.Title}}</h1>
<div>{{ dateFormat "Monday, Jan 2, 2006" .Date }}</div>
<div>{{if .Params.author}}Author: {{.Params.Author}}{{end}}</div>
<div>{{.Content}}</div>
</div>
</body>
</html>