all repos — h3rald @ 533ab3f4bedba2f9a184e43bd898d4e6b9a81773

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
<!DOCTYPE html>
<html lang="en">
  {{> _head}}
	<body>
    <div id="wrap">
      {{> _header}}
      <main class="container">
        <article class="{{content-type}}">
          <div class="row">
            {{> _page_header}}
            <time datetime="{{date-iso8601}}"><i class="ent ent-calendar"></i>&nbsp;{{date}}</time>
          </div>
          <div class="body-text" class="hyphenate">
            {{{contents}}}
					</div>
				</article>
      </main>
      {{> _footer}}
    </div> 
	</body>
</html>