Simplified html code
h3rald h3rald@h3rald.com
Tue, 16 Jun 2026 07:04:46 +0200
7 files changed,
26 insertions(+),
34 deletions(-)
M
templates/article.mustache
→
templates/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"/> {{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.mustache
→
templates/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.mustache
→
templates/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 —like me in the '90s— 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.mustache
→
templates/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.mustache
→
templates/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.mustache
→
templates/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.mustache
→
templates/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>