Skip to content

Commit

Permalink
Incorporate community feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveDesmond-ca committed Jan 15, 2025
1 parent 45fa396 commit 6e5d099
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
12 changes: 7 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
</head>

<body>
<header>
<header id="home">
<section class="title">
<img src="/icons/IWP-logo.png" alt="IWP logo">
<h1>Ithaca Web People</h1>
</section>
<nav>
<ul>
<li>
<a href="#description">Description</a>
<a href="#home">Home</a>
</li>
<li>
<a href="#events">Events</a>
Expand All @@ -40,7 +40,6 @@ <h1>Ithaca Web People</h1>

<main>
<section id="description">
<h2>Description</h2>
<p>
<a href="https://meetup.com/ithaca-web-people">Ithaca Web People</a>
is a group of local software developers, web designers, and tech professionals in the Ithaca, NY area.
Expand All @@ -61,8 +60,8 @@ <h2>Description</h2>
<h2>Upcoming Events</h2>

<p>
All of our meetups that have an agenda set are listed below.
If you're not seeing a date you'd expect to see, it might not have a topic yet!
All of our future scheduled meetups are listed below.
If you're not seeing a date that you'd expect to see, it might not be confirmed yet!
</p>

<div id="upcoming-events">
Expand Down Expand Up @@ -173,6 +172,9 @@ <h2>Contact</h2>

<footer>
&copy; 2011-2025 Ithaca Web People
<br/>
This site is open-source software &ndash;
<a href="https://github.com/IthacaWebPeople/www">edit it here</a>
</footer>
</body>

Expand Down
3 changes: 3 additions & 0 deletions index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ html, body {
top: 0;
}



header {
@extend .bg-light;

Expand Down Expand Up @@ -174,5 +176,6 @@ main {
footer {
@extend .bg-light;
padding: 2rem;
font-size: 0.875rem;
text-align: center;
}
5 changes: 3 additions & 2 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,10 @@ const renderEvent = (event) => {
const date = new Date(`${event.date}T18:00:00Z`);
return `<article>
<section>
<h3>${dompurify.sanitize(event.title || 'Future Meetup')}</h3>
<h3>${dompurify.sanitize(event.title ?? 'Future Meetup')}</h3>
<h4>${dompurify.sanitize(format(date, 'EEEE, MMMM d, yyyy'))}</h4>
<p>${dompurify.sanitize(event.description)}</p>
<h5>6:00pm &ndash; 7:30pm</h5>
<p>${dompurify.sanitize(event.description ?? 'TBD')}</p>
</section>
</article>`;
}
Expand Down

0 comments on commit 6e5d099

Please sign in to comment.