all repos — h3rald @ 202133e1a8da6566d617cf8ff4c001fdeba896b7

The sources of https://h3rald.com

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
<!DOCTYPE html>
<html lang="en">
  {{> _head}}
  <body>
    <div class="main container-fluid">
      {{> _header}}
      <div>
        <div class="row">
          <div class="box content home-content">
            <article class="page">
            <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>At any rate, thank you for stopping by!</p>
            <p>&mdash; Fabio</p>
            </div>
            </article>
          </div>
        </div>
      </div>
      <div class="row sidebar">
        {{> _panels}}
      </div>
      <div class="row">
        <div class="col-xs-12">
          {{> _footer}}
        </div>
      </div>
    </div>
  </body>
</html>