A lightweight, single-page archive of my presentations given at WordPress Meetups and WordCamps since 2015. This static site provides a searchable interface to browse slides by date, location, or title.
- Instant Search: Real-time filtering of presentations by title, date, or venue.
- Dark Mode: Built-in dark/light mode toggle with smooth transitions.
- Responsive Design: Fully mobile-friendly interface.
- Zero Build Step: Runs entirely in the browser using CDN-hosted libraries.
- HTML5
- Tailwind CSS: Utility-first CSS framework (loaded via CDN).
- Alpine.js: Lightweight JavaScript framework for reactive behavior (search & filtering).
- Google Fonts: Inter font family.
Because this project relies on CDNs for its dependencies, no package manager (npm/yarn) or build process is required.
-
Clone the repository:
git clone https://github.com/austinginder/slides.git cd slides -
Run locally: Simply open
index.htmlin any modern web browser.Optional: You can run a simple local server if preferred:
# Python 3 python3 -m http.server # PHP php -S localhost:8000
To add a new presentation, open index.html and locate the slidesApp() function in the <script> tag at the bottom of the file. Add a new object to the items array:
{
date: "Month Day, Year",
place: "Event Name",
title: "Presentation Title",
href: "Folder-Name/"
},MIT License
Copyright (c) 2026 Austin Ginder
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.