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

10
testdata/blog/.test/about.html vendored Normal file
View File

@@ -0,0 +1,10 @@
<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>

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>

10
testdata/blog/.test/posts/hello.html vendored Normal file
View File

@@ -0,0 +1,10 @@
<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>

10
testdata/blog/.test/posts/update.html vendored Normal file
View File

@@ -0,0 +1,10 @@
<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>

1
testdata/blog/.test/styles.css vendored Normal file
View File

@@ -0,0 +1 @@
html{margin:0;padding:0;box-sizing:border-box;}body{font-size:16pt;}