8000 Update New Officers by Dr-Gecko · Pull Request #53 · osusec/osusec.github.io · GitHub
[go: up one dir, main page]

Skip to content

Update New Officers #53

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Apr 11, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Several changes
Add Jamie as a WiCyS officer
Add social medias to our footer
Update footer year to grab the year automatically
  • Loading branch information
Dr-Gecko committed Jan 9, 2025
commit e309b4852e3ff846d9899543f9091c6a5291c845
7 changes: 5 additions & 2 deletions content/wicys.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ layout: 'infopage'
---

#### About WiCyS @ OSU
TBA
TBA

**Their website is in progress!**

#### Current leadership:

Expand All @@ -13,4 +15,5 @@ TBA
- Treasurer: **Alexa Baruela**
- Relations Officer: **Mayra Solorio**
- Event Coordinator: **Jordan White**
- Secretary: **Jacquelyn Sansone**
- Secretary: **Jacquelyn Sansone**
- Web Master: **Jamie Dang**
26 changes: 17 additions & 9 deletions hugo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ menu:
url: '/resources/'
weight: 7
about:
- name: 'Who We Are'
url: '/about/'
weight: 1
- name: 'Club Constitution'
url: '/club-constitution/'
weight: 2
- name: 'WiCyS'
url: '/wicys/'
weight: 3
- name: 'Who We Are'
url: '/about/'
weight: 1
- name: 'Club Constitution'
url: '/club-constitution/'
weight: 2
- name: 'WiCyS'
url: '/wicys/'
weight: 3

params:
dateFormat: "Jan 2, 2006"
Expand All @@ -47,3 +47,11 @@ params:
subTitle: 'Weekly Meetings, Guest Speakers, and CDC/CTF Competitions'
sliLink: 'https://apps.ideal-logic.com/osusli?key=F3T9-25VWY_5878-CZ4R_bc14da8b'
discordLink: 'https://discord.gg/ayX8f5W'
socialLinks:
- name: "Instagram"
url: "https://www.instagram.com/dam.secure/"
icon: "fab fa-instagram"
- name: "Twitter"
url: "https://x.com/OSUSEC"
icon: "fab fa-twitter"

23 changes: 20 additions & 3 deletions layouts/partials/footer.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
<footer class="border-top py-4 bg-light">
<div class="text-muted text-center">
<p>© 2024 OSU Security Club.</p>
<p>Contact us at: <a href="mailto:{{ .Site.Params.emailAddr }}" class="text-reset text-decoration-none fw-bold">{{ .Site.Params.emailAddr }}</a></p>
<p>© <script>document.write(new Date().getFullYear())</script> OSU Security Club.</p>
<p>
Contact us at:
<a href="mailto:{{ .Site.Params.emailAddr }}" class="text-reset text-decoration-none fw-bold">
{{ .Site.Params.emailAddr }}
</a>
</p>
<div class="mt-3">
<!-- Social Media Icons -->
{{ with .Site.Params.socialLinks }}
<div class="d-flex justify-content-center gap-3">
{{ range . }}
<a href="{{ .url }}" target="_blank" class="text-reset" title="{{ .name }}">
<i class="{{ .icon }}" aria-hidden="true"></i>
</a>
{{ end }}
</div>
{{ end }}
</div>
</div>
</footer>
</footer>
0