Skip to content

Commit e3d04f3

Browse files
committed
Add logo and CSS customizations for FAUST CTF 2025
1 parent 4ded0d5 commit e3d04f3

2 files changed

Lines changed: 25 additions & 1 deletion

File tree

src/ctf_gameserver/web/static/style.css

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,3 +95,17 @@ img#load-spinner {
9595
#check-list {
9696
padding-left: 20px;
9797
}
98+
99+
.navbar-brand img {
100+
margin-right: 15px;
101+
height: 35px;
102+
}
103+
104+
.navbar-brand {
105+
padding: 5px 15px;
106+
}
107+
108+
#supporter-column img {
109+
margin-top: 10px;
110+
margin-bottom: 25px;
111+
}

src/ctf_gameserver/web/templates/base-common.html

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,25 @@
2222

2323
<title itemprop="name">{% block title %}{% endblock %} | {{ competition_name }}</title>
2424

25+
<meta name="description" itemprop="description" property="og:description" content="
26+
FAUST CTF 2025 is an online attack-defense CTF competition run by FAUST, the CTF team of
27+
Friedrich-Alexander University Erlangen-Nürnberg
28+
" />
29+
<meta name="keywords" content="
30+
ctf, capture the flag, security, it security, information security, hacking, competition,
31+
contest, challenge, fau security team, fau, friedrich-alexander university
32+
" />
33+
2534
<meta property="og:type" content="website" />
2635
<meta property="og:site_name" content="{{ competition_name }}" />
36+
<meta property="og:image" content="/img/faustctf.png" />
2737
</head>
2838

2939

3040
<body>
3141
<nav class="navbar navbar-expand-lg bg-dark mb-5" data-bs-theme="dark">
3242
<div class="container">
33-
<a class="navbar-brand" href="{{ HOME_URL }}">{{ competition_name }}</a>
43+
<a class="navbar-brand" href="{{ HOME_URL }}"><img src="/img/faustctf-ondark.png" alt="FAUST CTF 2025 logo" />{{ competition_name }}</a>
3444

3545
<!-- "Hamburger menu" for small screens -->
3646
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#main-menu" aria-controls="main-menu" aria-expanded="false" aria-label="Toggle navigation">

0 commit comments

Comments
 (0)