1
0

initial site template

Using the Skeleton CSS framework and a markdown/HTML page rendered by
pandoc (because I couldn't live with just a static HTML file).
This commit is contained in:
Simon Michael
2016-02-11 14:43:57 -08:00
parent 54748e48b7
commit 63d8388ffb
10 changed files with 1749 additions and 2 deletions

43
index.tmpl Normal file
View File

@@ -0,0 +1,43 @@
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
-->
<meta charset="utf-8">
<title>Plain Text Accounting, a guide to Ledger and friends</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">
<!-- 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>