16 lines
366 B
HTML
16 lines
366 B
HTML
|
{{$markdownFilePath := printf .OriginalReq.URL.Path}}
|
||
|
{{$markdownFile := (include $markdownFilePath | splitFrontMatter)}}
|
||
|
{{$meta := $markdownFile.Meta }}
|
||
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>{{ $meta.title }}</title>
|
||
|
<link rel="stylesheet" href="/css/default.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<main>
|
||
|
{{markdown $markdownFile.Body }}
|
||
|
</main>
|
||
|
</body>
|
||
|
</html>
|