index.ejs 1.15 KB
<!-- views/posts/index.ejs -->

<!DOCTYPE html>
<html>
  <head>
    <%- include('../partials/head') %>
  </head>
  <body>
    <%- include('../partials/nav') %>

    <div class="container mb-3">

      <h2 class="mb-3">Board</h2>

      <table class="board-table table table-sm border-bottom">

        <thead class="thead-light">
          <tr>
            <th scope="col">Title</th>
            <th scope="col" class="date">Date</th>
          </tr>
        </thead>

        <tbody>
          <% if(page == null || page.length == 0){ %>
            <tr>
              <td colspan=2> There is no data to show :( </td>
            </tr>
          <% } %>
          <% page.forEach(function(page) { %>
            <tr>
              <td>
                <a href="/api/page/<%= page._id %>"><div class="ellipsis"><%= page.title %></div></a>
              </td>
              <td class="date">
                <span data-date="<%= page.createDate %>"></span> <!-- 1 -->
              </td>
            </tr>
          <% }) %>
        </tbody>

      </table>

      <div>
        <a class="btn btn-primary" href="/api/page/new">New</a>
      </div>

    </div>
  </body>
</html>