sync templates from my site - saait - the most boring static page generator
 (HTM) git clone git://git.codemadness.org/saait
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 55da975904aa48d6514cc29b406ec1ea7c1c3719
 (DIR) parent 05eb9e7224f302b9d611043adb52418450b3ce4d
 (HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       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(-)
       ---
 (DIR) 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">Mail</a>
       +                                <a href="mailto:${sitemail}">Mail</a>
                                </td>
                        </tr>
                        </table>
 (DIR) 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">Mail</a>
       +                                <a href="mailto:${sitemail}">Mail</a>
                                </td>
                        </tr>
                        </table>
 (DIR) 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}">${updated}</time></p>
       +        <h1>${title}</h1>
       +        <p>
       +        <strong>Last modification on </strong> <time>${updated}</time>
       +        </p>
        </header>
        
        %{contentfile}