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 35 |
<!DOCTYPE html>
<html lang="en">
{{> _head}}
<body id="top">
<div class="main">
<div class="row header">
<div class="sidebar">
{{> _header}}
</div>
</div>
<div class="row main-content">
<article class="{{content-type}} box content">
{{> _page_header}}
<div class="body-text hyphenate">
<p>This page lists <strong>{{projects-count}}</strong> active projects that I am currently working on.</p>
<h3>Active Projects</h3>
{{#active-projects}}
{{> _project}}
{{/active-projects}}
<h3>Archived Projects</h3>
<p>The following projects are inactive and archived for historical purposes:</p>
<ul>
{{#inactive-projects}}
<li><a href="{{home}}">{{code}}</a></li>
{{/inactive-projects}}
</ul>
</div>
</article>
</div>
<div class="row footer">
{{> _footer}}
</div>
</div>
</body>
</html>
|