annotate testdata/blog/.test/index.html @ 23:40f55059fbfa draft

fixed output file names in html pages, fixed amber function bindings, replaced print command with build, fixed plugin functions, implemented zs and exec functions
author zaitsev.serge
date Sun, 30 Aug 2015 12:20:35 +0000
parents d577cff808bc
children e3c902a7380d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
21
d577cff808bc added simple blog-like structure with amber, gcss, markdown
zaitsev.serge
parents:
diff changeset
1 <html>
d577cff808bc added simple blog-like structure with amber, gcss, markdown
zaitsev.serge
parents:
diff changeset
2 <head>
d577cff808bc added simple blog-like structure with amber, gcss, markdown
zaitsev.serge
parents:
diff changeset
3 <title>My blog</title>
d577cff808bc added simple blog-like structure with amber, gcss, markdown
zaitsev.serge
parents:
diff changeset
4 <link href="styles.css" rel="stylesheet" type="text/css" />
d577cff808bc added simple blog-like structure with amber, gcss, markdown
zaitsev.serge
parents:
diff changeset
5 </head>
d577cff808bc added simple blog-like structure with amber, gcss, markdown
zaitsev.serge
parents:
diff changeset
6 <body>
d577cff808bc added simple blog-like structure with amber, gcss, markdown
zaitsev.serge
parents:
diff changeset
7 <p>Here goes list of posts</p>
d577cff808bc added simple blog-like structure with amber, gcss, markdown
zaitsev.serge
parents:
diff changeset
8 <ul>
d577cff808bc added simple blog-like structure with amber, gcss, markdown
zaitsev.serge
parents:
diff changeset
9 <li>
d577cff808bc added simple blog-like structure with amber, gcss, markdown
zaitsev.serge
parents:
diff changeset
10 <a href="/posts/hello.html">First post</a>
d577cff808bc added simple blog-like structure with amber, gcss, markdown
zaitsev.serge
parents:
diff changeset
11 </li>
d577cff808bc added simple blog-like structure with amber, gcss, markdown
zaitsev.serge
parents:
diff changeset
12 <li>
d577cff808bc added simple blog-like structure with amber, gcss, markdown
zaitsev.serge
parents:
diff changeset
13 <a href="/posts/update.html">Second post</a>
d577cff808bc added simple blog-like structure with amber, gcss, markdown
zaitsev.serge
parents:
diff changeset
14 </li>
d577cff808bc added simple blog-like structure with amber, gcss, markdown
zaitsev.serge
parents:
diff changeset
15 </ul>
d577cff808bc added simple blog-like structure with amber, gcss, markdown
zaitsev.serge
parents:
diff changeset
16 </body>
d577cff808bc added simple blog-like structure with amber, gcss, markdown
zaitsev.serge
parents:
diff changeset
17 </html>