Skip to content

Commit 8e44ff7

Browse files
committed
add press kit page
1 parent 5156fbf commit 8e44ff7

3 files changed

Lines changed: 55 additions & 0 deletions

File tree

public/js/modules/navbar-builder.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ const pages = {
55
"Newline": "https://newline.gent/",
66
"Events": "/events",
77
"Visiting / Contact": "/contact",
8+
"Press Kit": "/presskit",
89
};
910

1011
function createNavbar() {

server.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ app.get('/contact', (req, res) => {
2626
res.render('contact', { activePage: 'Visiting / Contact' });
2727
});
2828

29+
app.get('/presskit', (req, res) => {
30+
res.render('presskit', { activePage: 'Press Kit' });
31+
});
32+
2933
app.get('/event-list', (req, res) => {
3034
res.render('event-list');
3135
});

views/presskit.pug

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
doctype html
2+
html(lang="en")
3+
include partials/head
4+
body
5+
.wrapper
6+
include partials/header
7+
.container
8+
.row.mb-4
9+
.col-12
10+
h1 Press Kit
11+
p
12+
| Hackerspace Gent (0x20) is a community-run hackerspace in Ghent, Belgium.
13+
| We are a non-profit association of makers, engineers, artists, and curious minds
14+
| who share a physical space to collaborate, learn, and build things together.
15+
br
16+
br
17+
| For press inquiries: #[a(href="mailto:info@hackerspace.gent") info@hackerspace.gent]
18+
19+
h2 Logos
20+
.row.mb-5
21+
.col-xl-3.col-md-6.col-12.mb-3
22+
.framed.text-center.p-3
23+
img.img-fluid.mb-3(src="/images/0x20i.png" alt="0x20 Logo" style="max-height: 140px;")
24+
small.d-block.mb-2 Flappers only.
25+
a.btn(href="/images/0x20i.png" download) Download PNG
26+
.col-xl-3.col-md-6.col-12.mb-3
27+
.framed.text-center.p-3
28+
img.img-fluid.mb-3(src="/images/0x20white.png" alt="0x20 Logo White" style="max-height: 140px;")
29+
small.d-block.mb-2 Full ring logo.
30+
a.btn(href="/images/0x20white.png" download) Download PNG
31+
32+
33+
h2 Newline Posters
34+
p
35+
| Posters from #[a(href="https://newline.gent") Newline], our annual event.
36+
.row.mb-5
37+
.col-xl-3.col-md-6.col-12.mb-3
38+
.framed.p-2
39+
img.img-fluid.mb-2(src="https://newline.gent/poster/poster2026.png" alt="Newline 2026 poster (color)")
40+
small.d-block Newline 2026 — Color
41+
.mt-2
42+
a.btn.me-2(href="https://newline.gent/poster/poster2026.png" target="_blank") PNG
43+
a.btn(href="https://newline.gent/poster/poster2026.pdf" target="_blank") PDF
44+
.col-xl-3.col-md-6.col-12.mb-3
45+
.framed.p-2
46+
img.img-fluid.mb-2(src="https://newline.gent/poster/poster2026bw.png" alt="Newline 2026 poster (B&W)")
47+
small.d-block Newline 2026 — B&W
48+
.mt-2
49+
a.btn.me-2(href="https://newline.gent/poster/poster2026bw.png" target="_blank") PNG
50+
a.btn(href="https://newline.gent/poster/poster2026bw.pdf" target="_blank") PDF

0 commit comments

Comments
 (0)