diff testdata/blog/.test/index.html @ 21:d577cff808bc draft

added simple blog-like structure with amber, gcss, markdown
author zaitsev.serge
date Sat, 29 Aug 2015 21:44:20 +0000
parents
children e3c902a7380d
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/blog/.test/index.html	Sat Aug 29 21:44:20 2015 +0000
@@ -0,0 +1,17 @@
+<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>