blob: 8af053809c77f77e2359b814f4a5e1fcc4e94703 (
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Projects - Elias Haugsbakk</title>
<link rel="stylesheet" href="/css/common.css">
<link rel="stylesheet" href="/css/projects.css">
</head>
<body>
<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="#" class="small-link">GitHub</a>
</li>
<li>
<strong>Other Project Two</strong> - A short one-line description.
<span class="tech-stack-inline">(Python, PostgreSQL)</span>
<a href="#" class="small-link">GitHub</a>
</li>
</ul>
</section>
</main>
<footer>
<p>
<span class="footer-left"><a href="/">eliashaugsbakk.xyz</a></span>
<span class="footer-separator">|</span>
<span class="footer-right"><a href="mailto:[email protected]">[email protected]</a></span>
</p>
</footer>
</body>
</html>
|