First pass at md to html conversion

This commit is contained in:
Drew Galbraith 2023-05-03 17:20:12 -07:00
parent be11a2ee83
commit 25a8a078bb
13 changed files with 256 additions and 3 deletions

17
blog/pandoc.html Normal file
View file

@ -0,0 +1,17 @@
<!DOCTYPE html>
$-- Run with the following command:
$-- pandoc -s --template=blog/pandoc.html -o public/blog/sudoku.html blog/2023-04-10-sudoku.md
<html>
<head>
<meta charset="utf-8" />
<title>$title$</title>
<link rel="stylesheet" href="/css/styles.css">
</head>
<body>
<div class="container">
<h1 class="page-title">$title$</h1>
<div class="date">Published $date$</div>
$body$
</div>
</body>
</html>