sync templates from my site - saait - the most boring static page generator | |
git clone git://git.codemadness.org/saait | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 55da975904aa48d6514cc29b406ec1ea7c1c3719 | |
parent 05eb9e7224f302b9d611043adb52418450b3ce4d | |
Author: Hiltjo Posthuma <[email protected]> | |
Date: Sat, 19 Mar 2022 13:13:29 +0100 | |
sync templates from my site | |
No datetime attribute needed for <time>. Simplify the menu texts. | |
Diffstat: | |
M templates/index.html/header.html | 4 ++-- | |
M templates/page/header.html | 4 ++-- | |
M templates/page/item.html | 6 ++++-- | |
3 files changed, 8 insertions(+), 6 deletions(-) | |
--- | |
diff --git a/templates/index.html/header.html b/templates/index.html/header.html | |
@@ -27,9 +27,9 @@ | |
</td> | |
<td id="links-contact" align="right"> | |
<span class="hidden"> | </span> | |
- <a href="atom.xml">Atom feed</a> | | |
+ <a href="feeds.html">Feeds</a> | | |
<a href="pgp.asc">PGP</a> | | |
- <a href="mailto:${sitemail}" title="Mail me">M… | |
+ <a href="mailto:${sitemail}">Mail</a> | |
</td> | |
</tr> | |
</table> | |
diff --git a/templates/page/header.html b/templates/page/header.html | |
@@ -27,9 +27,9 @@ | |
</td> | |
<td id="links-contact" align="right"> | |
<span class="hidden"> | </span> | |
- <a href="atom.xml">Atom feed</a> | | |
+ <a href="feeds.html">Feeds</a> | | |
<a href="pgp.asc">PGP</a> | | |
- <a href="mailto:${sitemail}" title="Mail me">M… | |
+ <a href="mailto:${sitemail}">Mail</a> | |
</td> | |
</tr> | |
</table> | |
diff --git a/templates/page/item.html b/templates/page/item.html | |
@@ -1,6 +1,8 @@ | |
<header> | |
- <h1><a href="">${title}</a></h1> | |
- <p><strong>Last modification on </strong> <time datetime="${updated}">… | |
+ <h1>${title}</h1> | |
+ <p> | |
+ <strong>Last modification on </strong> <time>${updated}</time> | |
+ </p> | |
</header> | |
%{contentfile} |