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 26 27 28 29 30 31 32 33 34 |
<!DOCTYPE html>
<html lang="en">
{{> _head}}
<body>
{{> _theme_switcher}}
<div class="main container-fluid themed-content">
<div class="row">
<div class="col-xs-12 sidebar">
{{> _header}}
</div>
</div>
<div class="row main-content">
<div class="col-xs-12">
<article class="{{content-type}} box content">
{{> _page_header}}
<div id="body-text" class="hyphenate">
{{#active-projects}}
{{> _project}}
{{/active-projects}}
{{#inactive-projects}}
{{> _project}}
{{/inactive-projects}}
</div>
</article>
</div>
</div>
<div class="row">
<div class="col-xs-12">
{{> _footer}}
</div>
</div>
</div>
</body>
</html>
|