all repos — h3rald @ c2191cfa2724145d48c3dfdd77a1b428b25a7cfc

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
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
<!DOCTYPE html>
<html lang="en">
  {{> _head}}
  <body id="top">
    <div class="main">
      <div class="header" role="navigation">
        {{> _header}}
      </div>
      <div class="main-content" role="main">
          <div 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>
            <p>The release badges are color-coded based on the <em>dependability stage</em> of each project, 
            as defined in <a href="/conver">Convergent Versioning</a>:</p>
            <table class="project-legend">
              <tr>
                <td>
                  <table class="badge-container">
                    <tr class="badge">
                      <td class="badge-content badge-label">Stage</td><td class="badge-content badge-prototype">prototype</td>
                    </tr>
                  </table>
                </td>
                <td>
                  <table class="badge-container">
                    <tr class="badge">
                      <td class="badge-content badge-label">Stage</td><td class="badge-content badge-operational">operational</td>
                    </tr>
                  </table>
                </td>
              </tr>
              <tr>
                <td>
                  <table class="badge-container">
                    <tr class="badge">
                      <td class="badge-content badge-label">Stage</td><td class="badge-content badge-consolidated">consolidated</td>
                    </tr>
                  </table>
                </td>
                <td>
                  <table class="badge-container">
                    <tr class="badge">
                      <td class="badge-content badge-label">Stage</td><td class="badge-content badge-bedrock">bedrock</td>
                    </tr>
                  </table>
                </td>
              </tr>
            </table>
            <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>
          </div>
      </div>
      <div class="footer" role="contentinfo">
        {{> _footer}}
      </div>
    </div>
  </body>
</html>