diff --git a/pinaxcon/templates/static_pages/attend/guides.html b/pinaxcon/templates/static_pages/attend/guides.html
index 813bfd4..1a166a7 100644
--- a/pinaxcon/templates/static_pages/attend/guides.html
+++ b/pinaxcon/templates/static_pages/attend/guides.html
@@ -33,13 +33,13 @@
- Accessibility and Accommodations includes information for: parents; people with vision, hearing, and mobility issues; and people with dietary restrictions.
- Emergencies might involve the Code of Conduct, contacting organizers, calling the police, or finding a hospital or pharmacy.
-
+ - Guide coming soon: Finding Food is easy in Petaluma, especially with this guide to local restaurants and markets with details about price, distance, and dietary restrictions.
- Fitness doesn't need to take a backseat while at North Bay Python, we have information about gyms and pools as well as running and hiking paths.
- Getting Around P'town has key distances and details about taxis, busses, and walking paths.
- Meetups and birds of a feather sessions are great ways to connect with other attendees. Find and attend one or organize your own!
-
+ - Guide coming soon: Partner- and Family-friendly Activities for folks who are bringing their families along to Sonoma County.
- Report Incidents as per our Code of Conduct. We have procedure guides for attendees as well as staff and volunteers.
-
+ - Guide coming soon: Tourist Guide for those who are staying in Sonoma County before or after North Bay Python.
{% endblock %}
diff --git a/pinaxcon/urls.py b/pinaxcon/urls.py
index 5ab3159..aee283d 100644
--- a/pinaxcon/urls.py
+++ b/pinaxcon/urls.py
@@ -25,6 +25,7 @@ urlpatterns = [
# program
url(r"^program/events$", TemplateView.as_view(template_name="static_pages/program/events.html"), name="program/events"),
+ url(r"^events$", RedirectView.as_view(url="program/events")),
url(r"^program/call-for-proposals$", TemplateView.as_view(template_name="static_pages/program/call_for_proposals.html"), name="program/call-for-proposals"),
url(r"^program/selection-process$", TemplateView.as_view(template_name="static_pages/program/selection_process.html"), name="program/selection-process"),
url(r"^proposals$", RedirectView.as_view(url="program/call-for-proposals")),