all repos — h3rald @ b6f0a0889ca8349f53563b698c4a33d773b71f8a

The source code of the h3rald.com web site.

Simplified html code
h3rald h3rald@h3rald.com
Tue, 16 Jun 2026 07:04:46 +0200
commit

b6f0a0889ca8349f53563b698c4a33d773b71f8a

parent

9a303b8a7ddabd9a0b3ee527f9682ba240bff6ce

M templates/article.mustachetemplates/article.mustache

@@ -2,22 +2,20 @@ <!DOCTYPE html>

<html lang="en"> {{> _head}} <body id="top"> - <div class="main container-fluid"> - <div class="row header"> - <div class="col-xs-12 sidebar"> - {{> _header}} - </div> + <div class="main"> + <div class="header"> + {{> _header}} </div> - <div class="row main-content"> - <article class="{{content-type}} box content"> + <div class="main-content"> + <article class="{{content-type}} content"> {{> _page_header}} <time datetime="{{date-iso8601}}"><img src="/images/icons/calendar.svg" alt="[date]" class="icon"/>&nbsp;{{date}}</time> - <div class="body-text" class="hyphenate"> + <div class="body-text"> {{{contents}}} </div> </article> </div> - <div class="row footer"> + <div class="footer"> <div class="col-xs-12"> {{> _footer}} </div>
M templates/days.mustachetemplates/days.mustache

@@ -2,11 +2,9 @@ <!DOCTYPE html>

<html lang="en"> {{> _head}} <body id="top"> - <div class="main container-fluid"> + <div class="main"> <div class="header"> - <div class="sidebar"> - {{> _header}} - </div> + {{> _header}} </div> <div class="main-content days"> <article class="{{content-type}} box content">
M templates/grimoire.mustachetemplates/grimoire.mustache

@@ -9,9 +9,9 @@ {{> _header}}

</div> </div> <div class="main-content"> - <article class="{{content-type}} box content"> + <article class="{{content-type}} content"> {{> _page_header}} - <div class="body-text hyphenate"> + <div class="body-text"> <p>A <em>grimoire</em> is a book of spells. If you &mdash;like me in the '90s&mdash; ever played <a href="https://en.wikipedia.org/wiki/Magic:_The_Gathering">Magic: The Gathering</a>, then you'll already know that.</p> <p>However, in this case we are not talking about conjuring unicorns or moving objects using telekinesis, but rather unlocking the
M templates/home.mustachetemplates/home.mustache

@@ -3,7 +3,9 @@ <html lang="en">

{{> _head}} <body id="top"> <div class="main"> - {{> _header}} + <div class="header"> + {{> _header}} + </div> <div class="main-content"> <article class="page box content"> <h2>WELCOME</h2>
M templates/page.mustachetemplates/page.mustache

@@ -4,14 +4,12 @@ {{> _head}}

<body id="top"> <div class="main"> <div class="header"> - <div class="col-xs-12 sidebar"> - {{> _header}} - </div> + {{> _header}} </div> <div class="main-content"> - <article class="{{content-type}} box content"> + <article class="{{content-type}} content"> {{> _page_header}} - <div class="body-text hyphenate"> + <div class="body-text"> {{{contents}}} </div> </article>
M templates/project.mustachetemplates/project.mustache

@@ -4,12 +4,10 @@ {{> _head}}

<body id="top"> <div class="main"> <div class="header"> - <div class="sidebar"> - {{> _header}} - </div> + {{> _header}} </div> <div class="main-content"> - <article class="{{content-type}} box content"> + <article class="{{content-type}} content"> {{> _page_header}} <div class="card-badges"> {{#conver}}

@@ -65,7 +63,7 @@ {{/docs}}

</div> </div> {{/github}} - <div class="body-text hyphenate"> + <div class="body-text"> {{{contents}}} </div> </article>
M templates/projects.mustachetemplates/projects.mustache

@@ -3,15 +3,13 @@ <html lang="en">

{{> _head}} <body id="top"> <div class="main"> - <div class="row header"> - <div class="sidebar"> - {{> _header}} - </div> + <div class="header"> + {{> _header}} </div> - <div class="row main-content"> - <article class="{{content-type}} box content"> + <div class="main-content"> + <article class="{{content-type}} content"> {{> _page_header}} - <div class="body-text hyphenate"> + <div class="body-text"> <p>This page lists <strong>{{projects-count}}</strong> active projects that I am currently working on.</p> <h3>Active Projects</h3> {{#active-projects}}

@@ -27,7 +25,7 @@ </ul>

</div> </article> </div> - <div class="row footer"> + <div class="footer"> {{> _footer}} </div> </div>