all repos — h3rald @ 71d933a888ece70dddb87cd09dbbdfb8b5bd297f

The sources of https://h3rald.com

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>
    {{> _theme_switcher}} 
    <div class="main container-fluid themed-content">
      <div class="row header">
        <div class="col-xs-12 sidebar">
          {{> _header}}
        </div>
      </div>
      <div class="row main-content">
          <article class="{{content-type}} box content">
          {{> _page_header}}
          <p>This page lists <strong>{{projects-count}}</strong> projects that I am currently working on or that I worked on in the past.</p>
          <div id="body-text" class="hyphenate">
            {{#active-projects}}
              {{> _project}}
            {{/active-projects}}
            {{#inactive-projects}}
              {{> _project}}
            {{/inactive-projects}}
          </div>
          </article>
      </div>
      <div class="row footer">
        <div class="col-xs-12">
          {{> _footer}}
        </div>
      </div>
    </div>
  </body>
</html>