Skip to content

Commit dd7bf5c

Browse files
authoredJan 7, 2024
2024 Tech Meetup Schedule (#112)
1 parent a03cde2 commit dd7bf5c

File tree

4 files changed

+68
-1
lines changed

4 files changed

+68
-1
lines changed
 

‎_data/meetups.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
- date: January 6, 2024 (Saturday) at 1pm CST
2+
title: Code and Share
3+
description: Where you can discuss and showcase your personal projects, regardless of whether they are completed or still a work in progress. Alternatively, you can simply join to applaud, mentor, and offer support to fellow participants.
4+
signuplink: https://www.meetup.com/memphis-technology-user-groups/events/297158044/
5+
- date: January 9, 2024 (Tuesday) at 12 noon CST
6+
title: Coding Dojo
7+
description: An online meetup where we solve data structure / algorithm based technical interview questions collaboratively.
8+
signuplink: https://www.meetup.com/memphis-technology-user-groups/events/298053154/
9+
- date: January 21, 2024 (Sunday) at 2pm CST
10+
title: Code Together
11+
description: This is event is hosted by the talented teacher, content creator, and developer James Quick. Great opportunity for career advice, encouragement, and coding help.
12+
signuplink: https://www.meetup.com/memphis-technology-user-groups/events/298227693/
13+
- date: January 22, 2024 (Monday) at 12 noon CST
14+
title: Virtual Lunch
15+
description: If you're interested in meeting with other developers and chatting about tech, life, etc. during your lunch break, you're more than welcome to join us at our virtual table.
16+
signuplink: https://www.meetup.com/memphis-technology-user-groups/events/298227712/
17+
- date: January 23, 2024 (Tuesday) at 6:30pm CST
18+
title: Code-op
19+
description: TBD
20+
signuplink: https://www.meetup.com/memphis-technology-user-groups/events/298227731/
21+
- date: January 26, 2024 (Friday) at 11:30am CST
22+
title: UI/UX
23+
description: Spend the hour chatting about research and design concepts along with new and exciting topics in the world of UI/UX
24+
signuplink: https://www.meetup.com/memphis-technology-user-groups/events/297726030/

‎_layouts/default.html

+1
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@
7171
<li class="nav-item dropdown">
7272
<a class="nav-link dropdown-toggle" href="#" id="getInvolvedNavbarDropdownMenuLink" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Get Involved</a>
7373
<div class="dropdown-menu" aria-labelledby="getInvolvedNavbarDropdownMenuLink">
74+
<a class="dropdown-item" href="/schedule" data-target="#">Meetup Schedule</a>
7475
<a class="dropdown-item" href="/learn" data-target="#">Learn to Code</a>
7576
<a class="dropdown-item" href="/volunteer" data-target="#">Volunteer</a>
7677
<a class="dropdown-item" href="/sponsor" data-target="#">Sponsor</a>

‎css/core.scss

+3-1
Original file line numberDiff line numberDiff line change
@@ -946,4 +946,6 @@ header {
946946
content: "\a";
947947
white-space: pre;
948948
}
949-
}
949+
}
950+
951+
.border-purple { border-color: #8f13d9 !important; }

‎schedule.html

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
title: Schedule
3+
---
4+
5+
<!-- Header -->
6+
<header>
7+
<div class="overlay"></div>
8+
<video playsinline="playsinline" autoplay="autoplay" muted="muted" loop="loop">
9+
<source src="/content/videos/workshop2.mp4" type="video/mp4">
10+
</video>
11+
<div class="container h-100">
12+
<div class="d-flex h-100 text-center align-items-center">
13+
<div class="w-100 text-white">
14+
<p class="subheader d-none d-md-inline">Interested in hanging out with other tech professionals</p>
15+
<h1 class="header my-md-2">Sign up to attend one of our meetups</h1>
16+
</div>
17+
</div>
18+
</div>
19+
</header>
20+
21+
<section id="meetups">
22+
<div class="container">
23+
<div class="row section-header d-flex justify-content-center">
24+
<div class="col-lg-6 text-center">
25+
<h1>2024</h1>
26+
<h2>Tech Meetup Schedule</h2>
27+
</div>
28+
</div>
29+
<div class="row d-flex ">
30+
{% for event in site.data.meetups %}
31+
<div class="col-lg-12 py-4 border border-purple">
32+
<p class="text-primary">{{event.date}}</p>
33+
<h1 class="text-primary">{{event.title}}</h1>
34+
<p class="text-muted">{{event.description}}</p>
35+
<a href={{event.signuplink}}><u>Click to sign up</u></a>
36+
</div>
37+
{% endfor %}
38+
</div>
39+
</div>
40+
</section>

0 commit comments

Comments
 (0)
Please sign in to comment.