Login
4 branches 0 tags
Ben (T14/NixOS) Improved flake 41eb128 11 days ago 252 Commits
rubhub / templates / index.html
<html>
  <head>
    <title>RubHub</title>
    <link rel="canonical" href="https://rubhub.net">
  </head>

  <body>
    {% include "partials/sidebar.html" %}
    <main>
      <section>
        <div>
          <br/>
          <div class="card-grid">
            <div class="card">
              <div class="markdown">{{- index_content|safe -}}</div>
            </div>
          </div>
          <br/>
          <br/>
          <h2>Featured projects</h2>
          {% if featured.len() == 0 %}
          <p>No projects yet.</p>
          {% else %}
          <div class="card-grid">
            {% for project in featured %}
            {% include "partials/project_card.html" %}
            {% endfor %}
          </div>
          {% endif %}
        </div>
      </section>
    </main>
  </body>

</html>