all repos — h3rald @ 9b40a65613f396e9da8ea38609cbc25e643c6e57

The sources of https://h3rald.com

templates/article.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
<!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}}
          <time datetime="{{date-iso8601}}"><img src="/images/icons/calendar.svg" alt="[date]" class="icon"/>&nbsp;{{date}}</time>
          <div class="body-text" class="hyphenate">
            {{{contents}}}
          </div>
          </article>
      </div>
      <div class="row footer">
        <div class="col-xs-12">
          {{> _footer}}
        </div>
      </div>
    </div>
  </body>
</html>