added simple blog-like structure with amber, gcss, markdown

git-svn-id: file:///srv/svn/repo/aya/trunk@22 cec141ff-132a-4243-88a5-ce187bd62f94
This commit is contained in:
zaitsev.serge
2015-08-29 21:44:20 +00:00
parent 8bebf4c8e5
commit e4b40db2a7
11 changed files with 93 additions and 0 deletions

17
testdata/blog/.test/index.html vendored Normal file
View File

@@ -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>