templates/home.mustache
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
<!DOCTYPE html>
<html lang="en">
{{> _head}}
<body id="top">
{{> _theme_switcher}}
<div class="main container-fluid themed-content">
{{> _header}}
<div class="row main-content">
<article class="page box content">
<h2>WELCOME!</h2>
<div class="body-text">
<p>Welcome to H3RALD.com. This site used to be a fairly active blog back in the early 2000s, but sadly I progressively lost interest in writing articles, perhaps because I didn't have anything new to write about that you couldn't find elsewhere. However, all the content is still here, so feel free to browse through the <a href="/articles">articles</a> section.</p>
<p>As I progressively neglected writing, I started creating more and more small programs and tools to perform common tasks, mostly using the <a href="https://nim-lang.org" target="_blank">Nim</a> programming language. They are all open source, they all have a dedicated project page here, and there's some pretty decent documentation for most of them. You can find them all in the <a href="/projects">projects</a> section.</p>
<p>Last but not least, I also added a <a href="/grimoire">grimoire</a> section, where you'll find useful <em>spells</em> to cast on with your command line to solve common problems (and save some time instead of searching the web or asking AI bots or something).</p>
<p>Enjoy your stay, and thank you for stopping by!</p>
<p>— Fabio</p>
</div>
</article>
</div>
<div class="row sidebar">
{{> _panels}}
</div>
<div class="row footer">
<div class="col-xs-12">
{{> _footer}}
</div>
</div>
</div>
</body>
</html>
|