Skip to content

Commit a423dd4

Browse files
committed
new projects section
1 parent 9fbc7a7 commit a423dd4

5 files changed

Lines changed: 95 additions & 2 deletions

File tree

sass/hallo/_layout.scss

Lines changed: 52 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,57 @@ main {
121121
}
122122
}
123123

124+
.projects {
125+
margin-top: 25px;
126+
text-align: center;
127+
128+
p {
129+
font-size: x-large;
130+
margin-top: 40px;
131+
margin-bottom: 40px;
132+
}
133+
134+
.row {
135+
display: flex;
136+
flex-direction: column;
137+
align-items: center;
138+
row-gap: 20px;
139+
140+
.project {
141+
text-decoration: none;
142+
display: flex;
143+
align-items: center;
144+
gap: 20px;
145+
max-width: 400px;
146+
width: 100%;
147+
148+
.project-info {
149+
flex: 1;
150+
text-align: left;
151+
152+
.project-name {
153+
font-size: 1.1rem;
154+
font-weight: 600;
155+
margin-bottom: 8px;
156+
}
157+
158+
.project-description {
159+
font-size: 0.9rem;
160+
line-height: 1.5;
161+
opacity: 0.85;
162+
}
163+
}
164+
165+
.project-logo {
166+
width: 80px;
167+
height: 80px;
168+
flex-shrink: 0;
169+
object-fit: contain;
170+
}
171+
}
172+
}
173+
}
174+
124175
.clients {
125176
margin-top: 25px;
126177
text-align: center;
@@ -171,4 +222,4 @@ footer {
171222
height: 28px;
172223
}
173224
}
174-
}
225+
}

static/images/ezlime-logo.svg

Lines changed: 10 additions & 0 deletions
Loading

static/images/gitui-logo.png

35.8 KB
Loading

static/images/liveask-logo.svg

Lines changed: 1 addition & 0 deletions
Loading

templates/index.html

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,35 @@
5454
</div>
5555
</div>
5656
</main>
57-
{% endblock content %}
57+
<main>
58+
<div class="projects column left">
59+
<p>
60+
Featured Open Source Projects:
61+
</p>
62+
63+
<div class="row">
64+
<a href="https://live-ask.com" class="project">
65+
<div class="project-info">
66+
<div class="project-name">live-ask.com</div>
67+
<div class="project-description">Real-time Q&A platform for moderating audience questions at events</div>
68+
</div>
69+
<img src="{{ get_url(path='images/liveask-logo.svg') }}" class="project-logo" alt="live-ask logo" />
70+
</a>
71+
<a href="https://ezli.me" class="project">
72+
<div class="project-info">
73+
<div class="project-name">ezli.me</div>
74+
<div class="project-description">Lightning-fast, privacy-focused URL shortening service</div>
75+
</div>
76+
<img src="{{ get_url(path='images/ezlime-logo.svg') }}" class="project-logo" alt="ezli.me logo" />
77+
</a>
78+
<a href="https://gitui.org" class="project">
79+
<div class="project-info">
80+
<div class="project-name">gitui.org</div>
81+
<div class="project-description">Blazing fast terminal UI for Git written in Rust</div>
82+
</div>
83+
<img src="{{ get_url(path='images/gitui-logo.png') }}" class="project-logo" alt="gitui logo" />
84+
</a>
85+
</div>
86+
</div>
87+
</main>
88+
{% endblock content %}

0 commit comments

Comments
 (0)