1
0

switch to a mdbook-like file layout, using src/ and out/

Unlike mdbook, the out/ directory contains needed assets and is not expendable.
This commit is contained in:
Simon Michael
2023-11-27 19:10:08 -10:00
parent 1b40d16358
commit 6f67b1bc2c
18 changed files with 17 additions and 9 deletions

44
page.tmpl Normal file
View File

@@ -0,0 +1,44 @@
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
-->
<meta charset="utf-8">
<title>$title$ - plaintextaccounting.org</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
-->
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<!-- CSS
-->
<link rel="stylesheet" href="/css/normalize.css">
<link rel="stylesheet" href="/css/skeleton.css">
<link rel="stylesheet" href="/css/site.css">
<!-- Favicon
-->
<link rel="icon" type="image/png" href="images/favicon.png">
</head>
<body>
<!-- Primary Page Layout
-->
<div class="container">
$body$
</div>
<!-- End Document
-->
</body>
</html>