all repos — h3rald @ 9e432ab73cc15a4521c1ceca20cc2291e0f096cb

The source code of the h3rald.com web site.

templates/project.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
<!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}}
          {{> _project_badges}} 
          {{#sourcehut}}
          <div class="card project-card">
            <div class="card-footer">
              <a href="https://git.sr.ht/~h3rald/{{sourcehut}}" class="action">source</a>
              {{#site}}
              <a href="{{site}}" class="action">site</a>
              {{/site}}
              {{#changelog}}
              <a href="https://git.sr.ht/~h3rald/{{sourcehut}}/tree/main/item/CHANGELOG.md" class="action">changelog</a>
              {{/changelog}}
              {{#docs}}
              <a href="{{docs}}" class="action">docs</a>
              {{/docs}}
            </div>
          </div>
          {{/sourcehut}}
          {{#github}}
          <div class="card project-card">
            <div class="card-footer">
              <a href="https://github.com/h3rald/{{github}}" class="action">source</a>
              <a href="https://github.com/h3rald/{{github}}/issues" class="action">issues</a>
              {{#site}}
              <a href="{{site}}" class="action">site</a>
              {{/site}}
              {{#docs}}
              <a href="{{docs}}" class="action">docs</a>
              {{/docs}}
            </div>
          </div>
          {{/github}}
          <div class="body-text">
            {{{contents}}}
          </div>
          </div>
      </div>
      <div class="footer" role="contentinfo">
          {{> _footer}}
      </div>
    </div>
  </body>
</html>