+++ /dev/null
-<html>
- <head>
- <title>About myself</title>
- <link href="styles.css" rel="stylesheet" type="text/css" />
- </head>
- <body><h1>About myself</h1>
-
-<p>Hi all. This is a brief description of who I am.</p>
-</body>
-</html>
+++ /dev/null
-<html>
- <head>
- <title>My blog</title>
- <link href="styles.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <p>Here goes list of posts</p>
- <ul>
- <li>
- <a href="/posts/hello.html">First post</a>
- </li>
- <li>
- <a href="/posts/update.html">Second post</a>
- </li>
- </ul>
- </body>
-</html>
+++ /dev/null
-<html>
- <head>
- <title>First post</title>
- <link href="styles.css" rel="stylesheet" type="text/css" />
- </head>
- <body><h1>First post</h1>
-
-<p>This is my first post</p>
-</body>
-</html>
+++ /dev/null
-<html>
- <head>
- <title>Second post</title>
- <link href="styles.css" rel="stylesheet" type="text/css" />
- </head>
- <body><h1>Second post</h1>
-
-<p>This is my second post</p>
-</body>
-</html>
+++ /dev/null
-html{margin:0;padding:0;box-sizing:border-box;}body{font-size:16pt;}
\ No newline at end of file
+++ /dev/null
-html
- head
- title #{title}
- link[href="styles.css"][rel="stylesheet"][type="text/css"]
- body
- #{unescaped(content)}
+++ /dev/null
-title: About myself
-date: 28-08-2015
----
-
-# {{title}}
-
-Hi all. This is a brief description of who I am.
+++ /dev/null
-html
- head
- title My blog
- link[href="styles.css"][rel="stylesheet"][type="text/css"]
- body
- p Here goes list of posts
- ul
- li
- a[href="/posts/hello.html"] First post
- li
- a[href="/posts/update.html"] Second post
-
+++ /dev/null
-title: First post
-date: 28-08-2015
----
-
-# {{title}}
-
-This is my first post
-
+++ /dev/null
-title: Second post
-date: 29-08-2015
----
-
-# {{title}}
-
-This is my second post
-
+++ /dev/null
-html
- margin: 0
- padding: 0
- box-sizing: border-box
-
-body
- font-size: 16pt
+++ /dev/null
-<html>
- <body>
- <h1>Hello</h1>
- </body>
-</html>
+++ /dev/null
-<html>
- <body>
- <h1>{{ printf Hello }}</h1>
- </body>
-</html>
--- /dev/null
+# Simple
+
+Simple page
+++ /dev/null
-<html>
- <body>
- <p>Hello world</p>
- </body>
-</html>
+++ /dev/null
-body{font:100% Helvetica, sans-serif;color:blue;}
\ No newline at end of file
+++ /dev/null
-html
- body
- p Hello world
+++ /dev/null
-$base-font: Helvetica, sans-serif
-$main-color: blue
-
-body
- font: 100% $base-font
- color: $main-color