jmou/cgithub
git clone https://github.com/jmou/cgithub.git
git clone git@github.com:jmou/cgithub.git
Loading…
(top)/views/wikiPages.eta
428 Bytes / 16 lines / 14 loc
History
View raw
<% layout("/layouts/repo.eta"); it.path = "wiki/_pages" %>

<%~ include("./_wikiNav.eta", it) %>

<table>
  <% for (const page of it.pages) { %>
    <tr>
      <td><a href="<%= page.href %>"><%= page.name %></a></td>
      <td class="timestamp">
        <% if (page.updatedAt) { %>
          <time title="<%= page.updatedAt %>"><%= page.updatedAt.split("T")[0] %></time>
        <% } %>
      </td>
    </tr>
  <% } %>
</table>