Login
4 branches 0 tags
Ben (U939/Arch Linux) Minor styling and git url 0eb80ec 1 month ago 24 Commits
rubhub / templates / index.html
<!DOCTYPE html>
<html>
<head>
    <title>RubHub</title>
    <link rel="canonical" href="https://rubhub.net">
</head>

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

</html>