Login
4 branches 0 tags
Ben (U939/Arch Linux) Some styling / nicer form validation d580b41 1 month ago 23 Commits
rubhub / templates / projects.html
<!DOCTYPE html>
<html>
<head>
    <title>Your projects</title>
</head>
<body>
    <section>
        <div class="page-header">
            <h1>{{ username }}'s projects</h1>
            {% if is_owner %}
                <a class="btn" href="/projects/new">New project</a>
            {% endif %}
        </div>
        {% if projects.len() == 0 %}
            <p>No projects published yet.</p>
		{% else %}
			<div class="card-grid">
				{% for project in projects %}
					{% include "project_card.html" %}
				{% endfor %}
			</div>
		{% endif %}
	</section>
</body>
</html>