Skip to content
Open
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
5 changes: 5 additions & 0 deletions src/_includes/layouts/homepage.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,11 @@ <h3 id="{{ event.data.title | slug }}">{{ event.data.title }}</h3>
<a href="{{ event.url }}" aria-label="View Details for {{ event.data.title }}">View Details &#8250;</a>
</article>
{% endfor %}

<a href="/sesh" class="event-item" id="add-event-link">
{% include partials/add.svg %}
<span>* Insert Your Awesome Event Idea Here *</span>
Comment thread
michael-gee marked this conversation as resolved.
Outdated
</a>
</section>

<h2 class="events-title">Past Events</h2>
Expand Down
4 changes: 4 additions & 0 deletions src/_includes/partials/add.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 9 additions & 4 deletions src/_includes/partials/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,16 @@
<span class="footer-divider">•</span>
<a href="/">Events</a>
<span class="footer-divider">•</span>
<a href="/sesh">Sesh Help</a>
<a href="/sesh">Participate</a>
Comment thread
michael-gee marked this conversation as resolved.
</div>

<div class="footer-social">
<a href="https://discord.com/invite/q9ZdBgP" target="_blank" rel="noreferrer noopener" aria-label="Discord">
<a
href="https://discord.com/invite/q9ZdBgP"
target="_blank"
rel="noreferrer noopener"
aria-label="Discord icon link"
Comment thread
michael-gee marked this conversation as resolved.
Outdated
>
<svg aria-hidden="true" focusable="false" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<title>Discord icon</title>
<path
Expand All @@ -23,7 +28,7 @@
href="https://github.com/LunchDevCommunity/community-calendar"
target="_blank"
rel="noreferrer noopener"
aria-label="Github"
aria-label="Github icon link"
>
<svg
aria-hidden="true"
Expand All @@ -44,7 +49,7 @@
href="https://www.youtube.com/channel/UCB5V77aiP0pz7RVbfQrbr7Q"
target="_blank"
rel="noreferrer noopener"
aria-label="YouTube"
aria-label="YouTube icon link"
>
<svg
aria-hidden="true"
Expand Down
2 changes: 1 addition & 1 deletion src/_includes/partials/header.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<header id="navbar">
<nav>
<a href="/">
<h1 aria-label="Lunch.dev Community Calendar">lunch.dev Community 🗓️</h1>
<h1 aria-label="Lunch.dev Community Calendar">lunch.dev community 🗓️</h1>
</a>
</nav>
</header>
24 changes: 24 additions & 0 deletions src/css/homepage.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,37 @@
min-height: 140px;
margin: 16px;
padding: 16px;
border-radius: 6px;
box-shadow: rgba(0, 0, 0, 0.11) 0px 1.2px 3.6px, rgba(0, 0, 0, 0.11) 0px 6.4px 14.4px;
background-color: white;

display: flex;
flex-direction: column;
}

#add-event-link {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
cursor: pointer;
box-shadow: none;
color: #000;
border: 2px solid #000;
text-decoration: none;
padding: 48px 0;
transition: 0.3s;
}
#add-event-link:hover {
box-shadow: rgba(0, 0, 0, 0.11) 0px 1.2px 3.6px, rgba(0, 0, 0, 0.11) 0px 6.4px 14.4px;
}
#add-event-link span {
font-family: 'Alegreya Sans', sans-serif;
font-size: 1.17em;
padding: 8px 16px;
text-align: center;
}

.event-item__speaker-list {
padding-block-start: 1rem;
--avatar--size: 2.5rem;
Expand Down