mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-04-20 13:05:51 +00:00
16 lines
478 B
Text
16 lines
478 B
Text
<div id="octocat">
|
|
<img src="/images/dr-octocat-448x448.png" width="224" height="224" alt="Bad ass Indiana Jones Octocat">
|
|
</div>
|
|
|
|
<nav>
|
|
|
|
<% for (var name in public.projects._data) { %>
|
|
<% var project = public.projects._data[name] %>
|
|
<% if (name == 'index' || name[0] == '_' || project.hidden) continue %>
|
|
<div class="project-listing">
|
|
<h4><a href="<%= name %>"><%= name %></a></h4>
|
|
<p class="description"><%= project.description %></p>
|
|
</div>
|
|
<% } %>
|
|
|
|
</nav>
|