all repos — home @ 0093ce5abab2fe3dbbb2ae31e3987e577b584131

Improve microformats
Tim Izzo tim@octree.ch
Thu, 23 Mar 2023 09:47:10 +0100
commit

0093ce5abab2fe3dbbb2ae31e3987e577b584131

parent

bdc4c292bc66f353e8e0a7ee8aaef34ec99678f4

2 files changed, 16 insertions(+), 6 deletions(-)

jump to
M templates/page.htmltemplates/page.html

@@ -26,8 +26,12 @@ </head>

<body> <main class="page"> <div class="h-card"> - <h1 class="mb-8 p-name"> - Tim Izzo @<a href="https://5ika.ch" class="u-url">5ika.ch</a> + <h1 class="mb-8"> + <span class="p-name">Tim Izzo</span> @<a + href="https://5ika.ch" + class="u-url" + >5ika.ch</a + > </h1> </div> $CONTENT
M templates/post.htmltemplates/post.html

@@ -24,10 +24,16 @@ <title>$TITLE</title>

</head> <body> <main class="post"> - <h1 class="mb-8 p-name"> - Tim Izzo @<a href="https://5ika.ch" class="u-url">5ika.ch</a> - </h1> - $CONTENT + <div class="h-card"> + <h1 class="mb-8"> + <span class="p-name">Tim Izzo</span> @<a + href="https://5ika.ch" + class="u-url" + >5ika.ch</a + > + </h1> + </div> + <article class="h-entry">$CONTENT</article> </main> </body> </html>