Skip to content

Commit bfa9f05

Browse files
authored
Several changes (#51)
Add Jamie as a WiCyS officer Add social medias to our footer Update footer year to grab the year automatically
1 parent 10f3276 commit bfa9f05

File tree

3 files changed

+42
-14
lines changed

3 files changed

+42
-14
lines changed

content/wicys.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ layout: 'infopage'
44
---
55

66
#### About WiCyS @ OSU
7-
TBA
7+
TBA
8+
9+
**Their website is in progress!**
810

911
#### Current leadership:
1012

@@ -13,4 +15,5 @@ TBA
1315
- Treasurer: **Alexa Baruela**
1416
- Relations Officer: **Mayra Solorio**
1517
- Event Coordinator: **Jordan White**
16-
- Secretary: **Jacquelyn Sansone**
18+
- Secretary: **Jacquelyn Sansone**
19+
- Web Master: **Jamie Dang**

hugo.yaml

+17-9
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ menu:
3030
url: '/resources/'
3131
weight: 7
3232
about:
33-
- name: 'Who We Are'
34-
url: '/about/'
35-
weight: 1
36-
- name: 'Club Constitution'
37-
url: '/club-constitution/'
38-
weight: 2
39-
- name: 'WiCyS'
40-
url: '/wicys/'
41-
weight: 3
33+
- name: 'Who We Are'
34+
url: '/about/'
35+
weight: 1
36+
- name: 'Club Constitution'
37+
url: '/club-constitution/'
38+
weight: 2
39+
- name: 'WiCyS'
40+
url: '/wicys/'
41+
weight: 3
4242

4343
params:
4444
dateFormat: "Jan 2, 2006"
@@ -47,3 +47,11 @@ params:
4747
subTitle: 'Weekly Meetings, Guest Speakers, and CDC/CTF Competitions'
4848
sliLink: 'https://apps.ideal-logic.com/osusli?key=F3T9-25VWY_5878-CZ4R_bc14da8b'
4949
discordLink: 'https://discord.gg/ayX8f5W'
50+
socialLinks:
51+
- name: "Instagram"
52+
url: "https://www.instagram.com/dam.secure/"
53+
icon: "fab fa-instagram"
54+
- name: "Twitter"
55+
url: "https://x.com/OSUSEC"
56+
icon: "fab fa-twitter"
57+

layouts/partials/footer.html

+20-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
<footer class="border-top py-4 bg-light">
22
<div class="text-muted text-center">
3-
<p>© 2024 OSU Security Club.</p>
4-
<p>Contact us at: <a href="mailto:{{ .Site.Params.emailAddr }}" class="text-reset text-decoration-none fw-bold">{{ .Site.Params.emailAddr }}</a></p>
3+
<p>© <script>document.write(new Date().getFullYear())</script> OSU Security Club.</p>
4+
<p>
5+
Contact us at:
6+
<a href="mailto:{{ .Site.Params.emailAddr }}" class="text-reset text-decoration-none fw-bold">
7+
{{ .Site.Params.emailAddr }}
8+
</a>
9+
</p>
10+
<div class="mt-3">
11+
<!-- Social Media Icons -->
12+
{{ with .Site.Params.socialLinks }}
13+
<div class="d-flex justify-content-center gap-3">
14+
{{ range . }}
15+
<a href="{{ .url }}" target="_blank" class="text-reset" title="{{ .name }}">
16+
<i class="{{ .icon }}" aria-hidden="true"></i>
17+
</a>
18+
{{ end }}
19+
</div>
20+
{{ end }}
21+
</div>
522
</div>
6-
</footer>
23+
</footer>

0 commit comments

Comments
 (0)