all repos — h3rald @ c00b4dea509c2134021a1441ccd9f5cdbbffd310

The sources of https://h3rald.com

templates/projects.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
<!DOCTYPE html>
<html lang="en">
  {{> _head}}
	<body>
    <div id="wrap">
      {{> _header}}
      <main id="main" class="container">
        <article class="projects">
          <div class="row">
            {{> _page_header}}
          </div>
          <div class="body-text hyphenate">
            {{#active-projects}}
              {{> _project}}
            {{/active-projects}}
            {{#inactive-projects}}
              {{> _project}}
            {{/inactive-projects}}
					</div>
				</article>
      </main>
      {{> _footer}}
    </div> 
	</body>
</html>