summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/brochure/templates/default.html2
-rw-r--r--examples/morepages/templates/default.html4
-rw-r--r--examples/simpleblog/templates/index.html2
-rw-r--r--examples/simpleblog/templates/post.html3
-rw-r--r--examples/tagblog/templates/post.html6
5 files changed, 11 insertions, 6 deletions
diff --git a/examples/brochure/templates/default.html b/examples/brochure/templates/default.html
index 8fb75cb..44d1cd0 100644
--- a/examples/brochure/templates/default.html
+++ b/examples/brochure/templates/default.html
@@ -11,7 +11,7 @@
<body>
<h1>MyAweSomeCompany - $title$</h1>
<div id="navigation">
- <a href="/index.html">Home</a>
+ <a href="/">Home</a>
<a href="/about.html">About</a>
<a href="/code.html">Code</a>
</div>
diff --git a/examples/morepages/templates/default.html b/examples/morepages/templates/default.html
index 8fcd9cb..6cd490a 100644
--- a/examples/morepages/templates/default.html
+++ b/examples/morepages/templates/default.html
@@ -17,6 +17,8 @@
$body$
- <div id="footer"> $footer$ </div>
+ <div id="footer">
+ $footer$
+ </div>
</body>
</html>
diff --git a/examples/simpleblog/templates/index.html b/examples/simpleblog/templates/index.html
index 4978949..ebda08d 100644
--- a/examples/simpleblog/templates/index.html
+++ b/examples/simpleblog/templates/index.html
@@ -3,7 +3,7 @@
<ul>
$posts$
</ul>
- <a href="/posts.html">All posts...</a>
+ <a href="/posts.html">All posts&hellip;</a>
</div>
<div class="about">
diff --git a/examples/simpleblog/templates/post.html b/examples/simpleblog/templates/post.html
index e2864ba..dd0db95 100644
--- a/examples/simpleblog/templates/post.html
+++ b/examples/simpleblog/templates/post.html
@@ -1,4 +1,5 @@
<h1>$title$</h1>
-by <em>$author$</em> on <strong>$date$</strong>
+
+<p>by <em>$author$</em> on <strong>$date$</strong></p>
$body$
diff --git a/examples/tagblog/templates/post.html b/examples/tagblog/templates/post.html
index 3c47f1b..0233fc1 100644
--- a/examples/tagblog/templates/post.html
+++ b/examples/tagblog/templates/post.html
@@ -1,5 +1,7 @@
<h1>$title$</h1>
-by <em>$author$</em> on <strong>$date$</strong>
-<div>Tagged as: $prettytags$.</div>
+
+<p>by <em>$author$</em> on <strong>$date$</strong></p>
+
+<p>Tagged as: $prettytags$.</p>
$body$