all repos — h3rald @ ebd415d3ecd14483862eb49dde0569e14ffef979

The sources of https://h3rald.com

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
<!DOCTYPE html>
<html lang="en">
  {{> _head}}
  <body>
    <div id="wrap">
      {{> _header}}
      <main class="container">
      <article class="{{content-type}}">
      <div class="row">
        {{> _page_header}}
      </div>
      {{#github}}
      <div class="card project-card">
        <div class="card-footer">
          <a href="https://github.com/h3rald/{{github}}" class="btn btn-link">
            source
          </a>
          <a href="https://github.com/h3rald/{{github}}/issues" class="btn btn-link">
            issues
          </a>
          {{#docs}}
          <a href="{{docs}}" class="btn btn-link">
            docs
          </a>
          {{/docs}}
          <br/>
          <img src="https://img.shields.io/github/release/h3rald/{{github}}/all.svg" style="vertical-align: middle;"/>
          <img src="https://img.shields.io/github/license/h3rald/{{github}}.svg" style="vertical-align: middle;"/>
          <img src="https://img.shields.io/github/last-commit/h3rald/{{github}}.svg" style="vertical-align: middle;"/>
        </div>
      </div>
      {{/github}}
      <div class="body-text" class="hyphenate">
        {{{contents}}}
      </div>
      </article>
      </main>
      {{> _footer}}
    </div> 
    <script src="/js/highlight.pack.js"></script>
    <script>
      hljs.configure({tabReplace: '  '});
      hljs.initHighlightingOnLoad();
    </script>
  </body>
</html>