all repos — h3rald @ 5ef27b5e1f5617ce8de0396a41ed45bcbd00583f

The sources of https://h3rald.com

templates/page.mustache

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
<!DOCTYPE html>
<html lang="en">
  {{> _head}}
	<body>
    <div id="wrap">
      {{> _header}}
      <main id="main" class="container">
        <article class="{{content-type}}">
          <div class="row">
            {{> _page_header}}
          </div>
          <div id="body-text" class="hyphenate">
            {{{contents}}}
					</div>
				</article>
      </main>
      {{> _footer}}
    </div> 
	</body>
</html>