blob: 6e31def62cd35496068e85fb21526e6b37d8ef71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
{% extends "templates/layout.html" %}
{% block content %}
<main class="main-container">
<a href="/" class="back-link-top">← back</a>
<header>
<h1>Projects</h1>
</header>
<section class="projects-category">
<ul class="project-list">
{% for project in projects %}
<li class="project-item">
<div class="project-meta">
<h3>{{ project.name }}</h3>
<p>{{ project.description }}</p>
</div>
<div class="project-actions">
{% if project.readMoreUrl %}
<a href="{{ project.readMoreUrl }}" class="pill-button">Read More</a>
{% endif %}
{% if project.gitUrl %}
<a href="{{ project.gitUrl }}" class="pill-button">Self-Hosted Git</a>
{% endif %}
{% if project.gitHubUrl %}
<a href="{{ project.gitHubUrl }}" class="pill-button">GitHub</a>
{% endif %}
</div>
</li>
{% endfor %}
</ul>
</section>
</main>
{% endblock %}
|