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 31 32 33 34 35 36 |
<!DOCTYPE html>
<html lang="en">
{{> _head}}
<body>
<div class="main container-fluid">
{{> _header}}
<div class="row">
<div class="hidden-xs col-sm-4 col-md-3 sidebar">
{{> _panels}}
</div>
<div class="col-xs-12 col-sm-8 col-md-9">
<div class="box content home-content">
<article>
<h2>Welcome</h2>
<section 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>At any rate, thank you for stopping by!</p>
<p>— Fabio</p>
</section>
</article>
</div>
</div>
</div>
<div class="hidden-md hidden-lg hidden-xl col-xs-12 sidebar">
{{> _panels}}
</div>
<div class="row">
<div class="col-xs-12">
{{> _footer}}
</div>
</div>
</div>
</body>
</html>
|