blob: 1a9fb8b266cbd44df792e90316f9e3b93280d2b8 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
{% extends "templates/layout.html" %}
{% block content %}
<main class="main-container">
<header>
<h1>Projects</h1>
</header>
<section class="projects-category">
<ul class="project-list">
<li class="project-item">
<div class="project-meta">
<h3>Project One Name</h3>
<p>Short project description / introduction.</p>
</div>
<div class="project-actions">
<a href="#">Read More</a>
<a href="#">Self-Hosted Git</a>
<a href="#">GitHub</a>
</div>
</li>
<li class="project-item">
<div class="project-meta">
<h3>Project Two Name</h3>
<p>Short project description / introduction.</p>
</div>
<div class="project-actions">
<a href="#">Read More</a>
<a href="#">Self-Hosted Git</a>
<a href="#">GitHub</a>
</div>
</li>
<li class="project-item">
<div class="project-meta">
<h3>Other Project One</h3>
<p>A short one-line description.</p>
</div>
<div class="project-actions">
<a href="#">Read More</a>
<a href="#">Self-Hosted Git</a>
<a href="#">GitHub</a>
</div>
</li>
</ul>
</section>
</main>
{% endblock %}
|