Login
4 branches 0 tags
Ben (Desktop/Arch) Updated flake 9689a25 19 days ago 212 Commits
rubhub / templates / projects_list.html
<html>
  <head>
    <title>Browse All Projects</title>
  </head>
  
  <body>
    {% include "partials/sidebar.html" %}
    <main>
      <section>
        <div class="page-header">
          <h1 class="project-header">Browse All Projects</h1>
        </div>
        {% if projects.len() > 0 %}
        <div class="card-grid">
          {% for project in projects %}
          {% include "partials/project_card.html" %}
          {% endfor %}
        </div>
        {% else %}
        <div class="card">
          <p>No public projects found.</p>
        </div>
        {% endif %}
      </section>
    </main>
  </body>
</html>