blob: bab2a0585fc6267ab0fb3bc461612c6b7c3938a9 (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
{% extends "templates/layout.html" %}
{% block content %}
<main class="main-container">
<header>
<h1>Projects</h1>
</header>
<section class="projects-category">
<h2>Featured Projects</h2>
<div class="project-item">
<div class="content-grid">
<div class="left-column">
<h3>Project One Name</h3>
<div class="tech-stack">
<span class="tag">Java</span>
<span class="tag">SQLite</span>
</div>
<p>Short project description / introduction.</p>
<div class="project-links">
<a href="#">GitHub</a> | <a href="#">Live Demo</a>
</div>
</div>
<div class="right-column">
<div class="project-placeholder">
<span>Image Placeholder</span>
</div>
</div>
</div>
</div>
<div class="project-item">
<div class="content-grid">
<div class="left-column">
<h3>Project Two Name</h3>
<div class="tech-stack">
<span class="tag">Rust</span>
</div>
<p>Short project description / introduction.</p>
<div class="project-links">
<a href="#">GitHub</a> | <a href="#">Read More</a>
</div>
</div>
<div class="right-column">
<div class="project-placeholder">
<span>Image Placeholder</span>
</div>
</div>
</div>
</div>
</section>
<section class="projects-category">
<h2>Other Projects</h2>
<ul class="simple-project-list">
<li>
<strong>Other Project One</strong> - A short one-line description.
<span class="tech-stack-inline">(Bash)</span>
<a href="#">GitHub</a>
</li>
<li>
<strong>Other Project Two</strong> - A short one-line description.
<span class="tech-stack-inline">(Python, PostgreSQL)</span>
<a href="#">GitHub</a>
</li>
</ul>
</section>
</main>
{% endblock %}
|