all repos — h3rald @ d63a3048dac3f1e562c2ae129fd720412fdd9c6a

The source code of the h3rald.com web site.

templates/projects.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
<!DOCTYPE html>
<html lang="en">
  {{> _head}}
  <body id="top">
    <div class="main">
      <div class="header">
        {{> _header}}
      </div>
      <div class="main-content">
          <article class="{{content-type}} content">
          {{> _page_header}}
          <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}}
              {{> _project}}
            {{/active-projects}}
            <h3>Archived Projects</h3>
            <p>The following projects are inactive and archived for historical purposes:</p>
            <ul>
            {{#inactive-projects}}
              <li><a href="{{home}}">{{code}}</a></li>
            {{/inactive-projects}}
            </ul>
          </div>
          </article>
      </div>
      <div class="footer">
        {{> _footer}}
      </div>
    </div>
  </body>
</html>