From 12d1e19d630f57b66b6ba6d20d57b9a589c11577 Mon Sep 17 00:00:00 2001 From: Josh Simmons Date: Sat, 8 Jun 2019 11:58:47 -0700 Subject: [PATCH 01/26] swap in 2019 dates and CFP links --- pinaxcon/templates/static_pages/homepage.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pinaxcon/templates/static_pages/homepage.html b/pinaxcon/templates/static_pages/homepage.html index 2a24bf3..30a644c 100644 --- a/pinaxcon/templates/static_pages/homepage.html +++ b/pinaxcon/templates/static_pages/homepage.html @@ -6,7 +6,7 @@ {% load sponsorship_tags %} {% load schedule_tags %} -{% block head_title %}November 3 and 4, 2018{% endblock %} +{% block head_title %}November 2 and 3, 2019{% endblock %} {% block body_class %}home{% endblock %} @@ -32,8 +32,8 @@

- November 3 & 4, 2018
- Tickets on sale now! + November 2 & 3, 2019
+ {% comment %}Tickets on sale now!{% endcomment %}

@@ -69,13 +69,14 @@
+{% comment %}

Speakers

@@ -123,7 +124,6 @@
{% endfor %} -{% comment %}
@@ -135,7 +135,6 @@
-{% endcomment %}
+{% endcomment %}
From 692fd8d3b8bc7f1bc6ce9e4888b08af59c171adf Mon Sep 17 00:00:00 2001 From: Josh Simmons Date: Sat, 8 Jun 2019 12:18:20 -0700 Subject: [PATCH 02/26] stub out traveler pages --- .../static_pages/attend/day-trip.html | 1 + .../templates/static_pages/attend/fly.html | 58 +++++++++++++++++++ .../templates/static_pages/attend/stay.html | 1 + pinaxcon/urls.py | 5 ++ 4 files changed, 65 insertions(+) create mode 100644 pinaxcon/templates/static_pages/attend/day-trip.html create mode 100644 pinaxcon/templates/static_pages/attend/fly.html create mode 100644 pinaxcon/templates/static_pages/attend/stay.html diff --git a/pinaxcon/templates/static_pages/attend/day-trip.html b/pinaxcon/templates/static_pages/attend/day-trip.html new file mode 100644 index 0000000..c855364 --- /dev/null +++ b/pinaxcon/templates/static_pages/attend/day-trip.html @@ -0,0 +1 @@ +day trip \ No newline at end of file diff --git a/pinaxcon/templates/static_pages/attend/fly.html b/pinaxcon/templates/static_pages/attend/fly.html new file mode 100644 index 0000000..ce912da --- /dev/null +++ b/pinaxcon/templates/static_pages/attend/fly.html @@ -0,0 +1,58 @@ +{% extends "page_with_title_and_lede.html" %} + +{% load i18n %} + +{% block head_title %}Flying to North Bay Python{% endblock %} + +{% block heading %}Flying to North Bay Python{% endblock %} + +{% block body_class %}attend{% endblock %} + +{% block lede %} + Chances are you're probably not in Petaluma, so if you want to come to North Bay Python, then you'll need to get here somehow. The good news is that it's reasonably easy to get here, whether you're coming from Sonoma County, elsewhere in the Bay Area, or from further out of town. +{% endblock %} + + +{% block content %} + +

By Car

+ +

If you're driving up, Downtown Petaluma is at exit 472A on Highway 101, 35 miles north of the Golden Gate Bridge.

+ +

All parking is free in Petaluma, however near the Mystic, street-level parking is time-limited. All-day parking is available at street level west of 5th St (towards 6th St), and at the the undercover garages at Keller St and at Theatre Square. Both garages are in short walking distance of the Mystic.

+ + +

By Public Transit

+ +

Public transit to Petaluma is currently not great.

+ +

You can take the 101 bus operated by Golden Gate Transit from downtown San Francisco, or south from Santa Rosa. Depending on sponsorship, we hope to run a free shuttle with BART and Caltrain connections for people from further out of town.

+ +

SMART, the new train service that runs along the 101 corridor, recently started operations. SMART is not suitable for getting to North Bay Python if you travel on weekends, as the first train leaves after proceedings start. SMART may be a better option than taking the bus between San Rafael and Petaluma if you travel up on weekdays.

+ + +

By Plane

+ +

Petaluma is within driving distance of all Bay Area Airports, and each airport has varying levels of public transit links to Petaluma.

+ +

Sonoma County Airport (STS) 25mi from venue

+ +

STS is 30 minutes out of Petaluma, and has nonstop flights to most major west coast cities on Alaska, United, and American, as well as Minneapolis and Las Vegas on Sun Country.

+ +

On weekdays and weekend afternoons, SMART train runs from STS to Downtown Petaluma Station, 1/4mi away from the North Bay Python venue. STS is also serviced by the Sonoma County Airport Express bus.

+ +

San Francisco International (SFO)/Oakland International (OAK) 50mi from venue

+ +

If you can't make it to STS, you can also try San Francisco (SFO) or Oakland (OAK) international airports. These have many more flights than STS, but are twice the distance away, and are subject to more highway traffic between the airport and Petaluma.

+ +

Transfers to Petaluma are available through the Sonoma County Airport Express.

+ +

San Jose International (SJC)/Sacramento (SMF) 85mi from venue

+ +

If you're planning on renting a car, San Jose (SJC) or Sacramento (SMF) are both two hours drive away.

+ +

Petaluma Municipal 3mi from venue

+ +

If you happen to have an aircraft of your own, Petaluma Municipal Airport is 3 miles down the road.

+ +{% endblock %} diff --git a/pinaxcon/templates/static_pages/attend/stay.html b/pinaxcon/templates/static_pages/attend/stay.html new file mode 100644 index 0000000..e569c1f --- /dev/null +++ b/pinaxcon/templates/static_pages/attend/stay.html @@ -0,0 +1 @@ +stay \ No newline at end of file diff --git a/pinaxcon/urls.py b/pinaxcon/urls.py index a54b73c..57685f3 100644 --- a/pinaxcon/urls.py +++ b/pinaxcon/urls.py @@ -47,6 +47,11 @@ urlpatterns = [ url(r"^guides$",TemplateView.as_view(template_name="static_pages/attend/guides.html"), name="attend/guides"), url(r"^guide$", RedirectView.as_view(url="guides")), + # go + url(r"^go/fly$", TemplateView.as_view(template_name="static_pages/attend/fly.html"), name="go/fly"), + url(r"^go/stay$", TemplateView.as_view(template_name="static_pages/attend/stay.html"), name="go/stay"), + url(r"^go/day-trip$", TemplateView.as_view(template_name="static_pages/attend/day-trip.html"), name="go/day-trip`"), + url(r"^safety$", TemplateView.as_view(template_name="static_pages/safety.html"), name="safety"), url(r"^emergencies$", RedirectView.as_view(url="safety")), url(r"^emergency$", RedirectView.as_view(url="safety")), From 0c93d443d396bf62b84cdd973a076cd3fccb618b Mon Sep 17 00:00:00 2001 From: Josh Simmons Date: Sat, 8 Jun 2019 12:57:06 -0700 Subject: [PATCH 03/26] begin stubbing out content for traveler pages --- .../static_pages/attend/day-trip.html | 72 ++++++++++++++++++- .../templates/static_pages/attend/fly.html | 17 ++++- .../templates/static_pages/attend/stay.html | 72 ++++++++++++++++++- 3 files changed, 158 insertions(+), 3 deletions(-) diff --git a/pinaxcon/templates/static_pages/attend/day-trip.html b/pinaxcon/templates/static_pages/attend/day-trip.html index c855364..2c53ae3 100644 --- a/pinaxcon/templates/static_pages/attend/day-trip.html +++ b/pinaxcon/templates/static_pages/attend/day-trip.html @@ -1 +1,71 @@ -day trip \ No newline at end of file +{% extends "page_with_title_and_lede.html" %} + +{% load i18n %} + +{% block head_title %}Making a Day Trip to North Bay Python{% endblock %} + +{% block heading %}Making a Day Trip to North Bay Python{% endblock %} + +{% block body_class %}attend{% endblock %} + +{% block lede %} + +{% endblock %} + + +{% block content %} + + +

By Car

+ +

If you're driving up, Downtown Petaluma is at exit 472A on Highway 101, 35 miles north of the Golden Gate Bridge.

+ +

All parking is free in Petaluma, however near the Mystic, street-level parking is time-limited. All-day parking is available at street level west of 5th St (towards 6th St), and at the the undercover garages at Keller St and at Theatre Square. Both garages are in short walking distance of the Mystic.

+ + +

By Public Transit

+ +

Public transit to Petaluma is currently not great.

+ +

You can take the 101 bus operated by Golden Gate Transit from downtown San Francisco, or south from Santa Rosa. Depending on sponsorship, we hope to run a free shuttle with BART and Caltrain connections for people from further out of town.

+ +

SMART, the new train service that runs along the 101 corridor, recently started operations. SMART is not suitable for getting to North Bay Python if you travel on weekends, as the first train leaves after proceedings start. SMART may be a better option than taking the bus between San Rafael and Petaluma if you travel up on weekdays.

+ + +

By Plane

+ +

Petaluma is within driving distance of all Bay Area Airports, and each airport has varying levels of public transit links to Petaluma.

+ +

Sonoma County Airport (STS) 25mi from venue

+ +

STS is 30 minutes out of Petaluma, and has nonstop flights to most major west coast cities on Alaska, United, and American, as well as Minneapolis and Las Vegas on Sun Country.

+ +

On weekdays and weekend afternoons, SMART train runs from STS to Downtown Petaluma Station, 1/4mi away from the North Bay Python venue. STS is also serviced by the Sonoma County Airport Express bus.

+ +

San Francisco International (SFO)/Oakland International (OAK) 50mi from venue

+ +

If you can't make it to STS, you can also try San Francisco (SFO) or Oakland (OAK) international airports. These have many more flights than STS, but are twice the distance away, and are subject to more highway traffic between the airport and Petaluma.

+ +

Transfers to Petaluma are available through the Sonoma County Airport Express.

+ +

San Jose International (SJC)/Sacramento (SMF) 85mi from venue

+ +

If you're planning on renting a car, San Jose (SJC) or Sacramento (SMF) are both two hours drive away.

+ +

Petaluma Municipal 3mi from venue

+ +

If you happen to have an aircraft of your own, Petaluma Municipal Airport is 3 miles down the road.

+ +{% endblock %} diff --git a/pinaxcon/templates/static_pages/attend/fly.html b/pinaxcon/templates/static_pages/attend/fly.html index ce912da..452903d 100644 --- a/pinaxcon/templates/static_pages/attend/fly.html +++ b/pinaxcon/templates/static_pages/attend/fly.html @@ -9,11 +9,26 @@ {% block body_class %}attend{% endblock %} {% block lede %} - Chances are you're probably not in Petaluma, so if you want to come to North Bay Python, then you'll need to get here somehow. The good news is that it's reasonably easy to get here, whether you're coming from Sonoma County, elsewhere in the Bay Area, or from further out of town. + {% endblock %} {% block content %} +

By Car

diff --git a/pinaxcon/templates/static_pages/attend/stay.html b/pinaxcon/templates/static_pages/attend/stay.html index e569c1f..ed007c0 100644 --- a/pinaxcon/templates/static_pages/attend/stay.html +++ b/pinaxcon/templates/static_pages/attend/stay.html @@ -1 +1,71 @@ -stay \ No newline at end of file +{% extends "page_with_title_and_lede.html" %} + +{% load i18n %} + +{% block head_title %}Staying in Town for North Bay Python{% endblock %} + +{% block heading %}Staying in Town for North Bay Python{% endblock %} + +{% block body_class %}attend{% endblock %} + +{% block lede %} + +{% endblock %} + + +{% block content %} + + +

By Car

+ +

If you're driving up, Downtown Petaluma is at exit 472A on Highway 101, 35 miles north of the Golden Gate Bridge.

+ +

All parking is free in Petaluma, however near the Mystic, street-level parking is time-limited. All-day parking is available at street level west of 5th St (towards 6th St), and at the the undercover garages at Keller St and at Theatre Square. Both garages are in short walking distance of the Mystic.

+ + +

By Public Transit

+ +

Public transit to Petaluma is currently not great.

+ +

You can take the 101 bus operated by Golden Gate Transit from downtown San Francisco, or south from Santa Rosa. Depending on sponsorship, we hope to run a free shuttle with BART and Caltrain connections for people from further out of town.

+ +

SMART, the new train service that runs along the 101 corridor, recently started operations. SMART is not suitable for getting to North Bay Python if you travel on weekends, as the first train leaves after proceedings start. SMART may be a better option than taking the bus between San Rafael and Petaluma if you travel up on weekdays.

+ + +

By Plane

+ +

Petaluma is within driving distance of all Bay Area Airports, and each airport has varying levels of public transit links to Petaluma.

+ +

Sonoma County Airport (STS) 25mi from venue

+ +

STS is 30 minutes out of Petaluma, and has nonstop flights to most major west coast cities on Alaska, United, and American, as well as Minneapolis and Las Vegas on Sun Country.

+ +

On weekdays and weekend afternoons, SMART train runs from STS to Downtown Petaluma Station, 1/4mi away from the North Bay Python venue. STS is also serviced by the Sonoma County Airport Express bus.

+ +

San Francisco International (SFO)/Oakland International (OAK) 50mi from venue

+ +

If you can't make it to STS, you can also try San Francisco (SFO) or Oakland (OAK) international airports. These have many more flights than STS, but are twice the distance away, and are subject to more highway traffic between the airport and Petaluma.

+ +

Transfers to Petaluma are available through the Sonoma County Airport Express.

+ +

San Jose International (SJC)/Sacramento (SMF) 85mi from venue

+ +

If you're planning on renting a car, San Jose (SJC) or Sacramento (SMF) are both two hours drive away.

+ +

Petaluma Municipal 3mi from venue

+ +

If you happen to have an aircraft of your own, Petaluma Municipal Airport is 3 miles down the road.

+ +{% endblock %} From 91ae199a337043486751d3d031beead43cd87459 Mon Sep 17 00:00:00 2001 From: Josh Simmons Date: Sat, 8 Jun 2019 15:09:44 -0700 Subject: [PATCH 04/26] draft airport and transit information on FLY traveler page --- .../templates/static_pages/attend/fly.html | 77 +++++++------------ 1 file changed, 29 insertions(+), 48 deletions(-) diff --git a/pinaxcon/templates/static_pages/attend/fly.html b/pinaxcon/templates/static_pages/attend/fly.html index 452903d..b844b3b 100644 --- a/pinaxcon/templates/static_pages/attend/fly.html +++ b/pinaxcon/templates/static_pages/attend/fly.html @@ -9,18 +9,39 @@ {% block body_class %}attend{% endblock %} {% block lede %} - + Flying in for North Bay Python can be a breeze. A single bus, train, or cab ride after landing in Santa Rosa, Oakland, or San Francisco, you can be ensconced in your accommodation and getting ready for the conference. {% endblock %} - {% block content %} +

All of the Airports

+ +

You can get to Petaluma from any of six airports, three of which we recommend, one of which is very convenient if it's an option for you:

+ +

Santa Rosa (STS)

+ +

Charles M. Schulz Sonoma County Airport, in Santa Rosa, is just 25 miles away from the venue and offers the convenience of a small regional airport. With short lines, short walks, Snoopy statues, and the shortest distance from the venue, this is our #1 recommendation.

+ +

You can get to and from the airport in about 30 minutes with a taxi cab, bus, or train with a short cab ride. You could rent a car, but you won't need it unless you're planning to explore the North Bay while you're in town.

+ +

You can fly into Santa Rosa through many airports, including: Portland (PDX), Los Angeles (LAX), Seattle (SEA), San Diego(SAN), Santa Ana (SNA), Phoenix (PHX), Dallas (DFW), Denver (DEN), and Minneapolis (MSP). You could fly from San Francisco (SFO) if you really wanted to, but we don't recommend it!

+ +

Oaklank (OAK) and San Francisco (SFO)

+ +

The airports in Oakland and San Francisco are about 50 miles away from the venue and have many more connecting flights. Because of their distance from the venue, travel times are very subject to freeway traffic and can range from 60 to 90 minutes. Upon arrival, we recommend taking the express bus; it's faster and cheaper than weaving together public transit systems to get here.

+ +

Sacramento (SMF) or San Jose (SJC)

+

The airports in Sacramento and San Jose are about 85 miles away from the venue and aren't recommended, but are options available to you. You'll probably need to rent a car. + +

Petaluma (O69)

+

If you happen to be a pilot, or be willing to charter a flight, you can flight directly into town through Petaluma Municipal Airport!

+ +

From Airport to Petaluma

+ +

How you get to Petaluma from the airport depends, naturally, on which airport you're flying into. Per airport details are provided above, but broadly your options are: cab rides, express shuttles, public transit, ride sharing apps, or renting a car.

+ +

Depending on which airport you use, you'll be in town within 30 to 90 minutes. If you need to park a car, take note: all parking is free in Petaluma, however street-level praking is time-limited near the venue. All-day parking is available at street level west of 5th Street (towards 6th Street), and at the garages at Keller St and at Theatre Square. Both garages are in short walking distance of the venue.

+ -

By Car

- -

If you're driving up, Downtown Petaluma is at exit 472A on Highway 101, 35 miles north of the Golden Gate Bridge.

- -

All parking is free in Petaluma, however near the Mystic, street-level parking is time-limited. All-day parking is available at street level west of 5th St (towards 6th St), and at the the undercover garages at Keller St and at Theatre Square. Both garages are in short walking distance of the Mystic.

- - -

By Public Transit

- -

Public transit to Petaluma is currently not great.

- -

You can take the 101 bus operated by Golden Gate Transit from downtown San Francisco, or south from Santa Rosa. Depending on sponsorship, we hope to run a free shuttle with BART and Caltrain connections for people from further out of town.

- -

SMART, the new train service that runs along the 101 corridor, recently started operations. SMART is not suitable for getting to North Bay Python if you travel on weekends, as the first train leaves after proceedings start. SMART may be a better option than taking the bus between San Rafael and Petaluma if you travel up on weekdays.

- - -

By Plane

- -

Petaluma is within driving distance of all Bay Area Airports, and each airport has varying levels of public transit links to Petaluma.

- -

Sonoma County Airport (STS) 25mi from venue

- -

STS is 30 minutes out of Petaluma, and has nonstop flights to most major west coast cities on Alaska, United, and American, as well as Minneapolis and Las Vegas on Sun Country.

- -

On weekdays and weekend afternoons, SMART train runs from STS to Downtown Petaluma Station, 1/4mi away from the North Bay Python venue. STS is also serviced by the Sonoma County Airport Express bus.

- -

San Francisco International (SFO)/Oakland International (OAK) 50mi from venue

- -

If you can't make it to STS, you can also try San Francisco (SFO) or Oakland (OAK) international airports. These have many more flights than STS, but are twice the distance away, and are subject to more highway traffic between the airport and Petaluma.

- -

Transfers to Petaluma are available through the Sonoma County Airport Express.

- -

San Jose International (SJC)/Sacramento (SMF) 85mi from venue

- -

If you're planning on renting a car, San Jose (SJC) or Sacramento (SMF) are both two hours drive away.

- -

Petaluma Municipal 3mi from venue

- -

If you happen to have an aircraft of your own, Petaluma Municipal Airport is 3 miles down the road.

- {% endblock %} From a3a6d93ba2f32bfaaa761484f01ad6f7fa14d5ca Mon Sep 17 00:00:00 2001 From: Josh Simmons Date: Sat, 8 Jun 2019 15:43:52 -0700 Subject: [PATCH 05/26] draft majority of FLY traveler page --- .../templates/static_pages/attend/fly.html | 35 +++++++++++++------ 1 file changed, 25 insertions(+), 10 deletions(-) diff --git a/pinaxcon/templates/static_pages/attend/fly.html b/pinaxcon/templates/static_pages/attend/fly.html index b844b3b..77614b1 100644 --- a/pinaxcon/templates/static_pages/attend/fly.html +++ b/pinaxcon/templates/static_pages/attend/fly.html @@ -9,11 +9,20 @@ {% block body_class %}attend{% endblock %} {% block lede %} - Flying in for North Bay Python can be a breeze. A single bus, train, or cab ride after landing in Santa Rosa, Oakland, or San Francisco, you can be ensconced in your accommodation and getting ready for the conference. + Flying in for North Bay Python can be a breeze. A bus, train, or cab ride after landing in Santa Rosa, Oakland, or San Francisco, you can be ensconced in your accommodation and gearing up for the conference. {% endblock %} {% block content %} -

All of the Airports

+ + + +

All of the Airports

You can get to Petaluma from any of six airports, three of which we recommend, one of which is very convenient if it's an option for you:

@@ -35,20 +44,26 @@

Petaluma (O69)

If you happen to be a pilot, or be willing to charter a flight, you can flight directly into town through Petaluma Municipal Airport!

-

From Airport to Petaluma

+

From Airport to Petaluma

How you get to Petaluma from the airport depends, naturally, on which airport you're flying into. Per airport details are provided above, but broadly your options are: cab rides, express shuttles, public transit, ride sharing apps, or renting a car.

Depending on which airport you use, you'll be in town within 30 to 90 minutes. If you need to park a car, take note: all parking is free in Petaluma, however street-level praking is time-limited near the venue. All-day parking is available at street level west of 5th Street (towards 6th Street), and at the garages at Keller St and at Theatre Square. Both garages are in short walking distance of the venue.

- +

Check out our Where to Stay page for more details on hotels and other options, including links to discounted rooms.

+ +

Scheduling Your Visit

+ +

All the official events will take place on Friday, Saturday, and Sunday, from November 1st to 3rd, so we recommend you arrive Friday afternoon (at the latest) and depart on Sunday evening (at the earliest).

+ +

Many people choose to arrive Thursday evening and depart Monday morning, for convenience. Lots of attendees choose to start their visit even earlier, or stay longer, so they have time to explore our landmarks, expansive parkland, and world class hospitality.

+ +

Food and Activities

+ +

food and activities

{% endblock %} From 68dc0a8d59ca21b60edab2c5b087679b44c0c6cb Mon Sep 17 00:00:00 2001 From: Josh Simmons Date: Sat, 8 Jun 2019 16:36:55 -0700 Subject: [PATCH 06/26] finish drafting FLY traveler page --- pinaxcon/templates/static_pages/attend/fly.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pinaxcon/templates/static_pages/attend/fly.html b/pinaxcon/templates/static_pages/attend/fly.html index 77614b1..59b2d46 100644 --- a/pinaxcon/templates/static_pages/attend/fly.html +++ b/pinaxcon/templates/static_pages/attend/fly.html @@ -64,6 +64,10 @@

Food and Activities

-

food and activities

+

Petaluma is right at the intersection of Sonoma, Napa, and Marin Counties. This three county region, which makes up the North Bay, is famous for its parkland, agriculture, fine food, wine, beer, and spirits. There's a lot to do here and we encourage you to explore while you're here!

+ +

We've prepared a food guide which will help you find good eats in Petaluma, but if you're sticking around beyond the conference, you'll want to check out your favorite food or restaurant guide.

+ +

From family-friendly hikes to museums, wine tours to wind swept beaches, and lots of kid-friendly attractions, we encourage folks to bring their families along and stay as long as they can! We will offer free childcare for kids from 6 months to 12 years of age during the conference.

{% endblock %} From 19c1a648b3ed2a24d9e557358f94dac970172248 Mon Sep 17 00:00:00 2001 From: Josh Simmons Date: Sat, 8 Jun 2019 16:45:06 -0700 Subject: [PATCH 07/26] update year in footer --- pinaxcon/templates/_footer.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pinaxcon/templates/_footer.html b/pinaxcon/templates/_footer.html index be02d2c..ae9fc21 100644 --- a/pinaxcon/templates/_footer.html +++ b/pinaxcon/templates/_footer.html @@ -9,7 +9,7 @@
- Book Hotel Petaluma + Book Hotel Petaluma
@@ -46,11 +46,10 @@
Where
Petaluma Marina, 450 Jefferson St (0.7mi from venue)
Price
$169-$189/night + tax
Style
Limited-Service Hotel
-
Book by
October 3rd
- Book Hampton by Hilton Petaluma + Book Hampton by Hilton Petaluma
@@ -65,13 +64,13 @@
Where
5100 Montero Way (3.7mi from venue)
-
Price
from $81/night + tax
+
Price
from $100/night + tax
Style
Motor Inn
Book
while rooms last
- Book Quality Inn Petaluma + Book Quality Inn Petaluma
diff --git a/pinaxcon/templates/static_pages/attend/stay.html b/pinaxcon/templates/static_pages/attend/stay.html index 1726936..999de40 100644 --- a/pinaxcon/templates/static_pages/attend/stay.html +++ b/pinaxcon/templates/static_pages/attend/stay.html @@ -53,7 +53,7 @@

Petaluma is right at the intersection of Sonoma, Napa, and Marin Counties. This three county region, which makes up the North Bay, is famous for its parkland, forests, agriculture, fine food, wine, beer, and spirits. There's a lot to do here and we encourage you to explore while you're here!

-

We've prepared a food guide which will help you find good eats in Petaluma, but if you're sticking around beyond the conference, you'll want to check out your favorite food or restaurant guide.

+

We've prepared a food guide which will help you find good eats in Petaluma, but if you're sticking around beyond the conference, you'll want to check out your favorite food or restaurant guide. We've also put together a transit guide to help you get around town once you're here.

From family-friendly hikes to museums, wine tours to wind swept beaches, and lots of kid-friendly attractions, we encourage folks to bring their families along and stay as long as they can! We will offer free childcare for kids from 6 months to 12 years of age during the conference.

diff --git a/pinaxcon/templates/static_pages/attend/transit.html b/pinaxcon/templates/static_pages/attend/transit.html index 4607cc0..9f7a01c 100644 --- a/pinaxcon/templates/static_pages/attend/transit.html +++ b/pinaxcon/templates/static_pages/attend/transit.html @@ -9,13 +9,13 @@ {% block body_class %}attend{% endblock %} {% block lede %} - Petaluma is, for the most part, very walkable. However, you can use public transit or taxis and can find ample parking to help with the rest. + Petaluma is, for the most part, very walkable. However, you can use public transit or taxis and can find ample parking to help with the rest. {% endblock %} {% block content %} -

The Mystic and Hotel Petaluma are both located in Downtown Petaluma which is compact and walkable, but some hotels are further afield and you may find a need for taxis or public transit. Here you'll find a guide to local transit. You can find information about parking on the Travel page.

+

The Mystic and Hotel Petaluma are both located in downtown Petaluma which is compact and walkable, but some hotels are further afield and you may find a need for taxis or public transit. Here you'll find a guide to local transit. You can find information about parking on the Travel page.

Public Transit

diff --git a/pinaxcon/templates/static_pages/attend/travel.html b/pinaxcon/templates/static_pages/attend/travel.html index d50918c..49d2414 100644 --- a/pinaxcon/templates/static_pages/attend/travel.html +++ b/pinaxcon/templates/static_pages/attend/travel.html @@ -9,50 +9,36 @@ {% block body_class %}attend{% endblock %} {% block lede %} - Chances are you're probably not in Petaluma, so if you want to come to North Bay Python, then you'll need to get here somehow. The good news is that it's reasonably easy to get here, whether you're coming from Sonoma County, elsewhere in the Bay Area, or from further out of town. + Most people in this world don't live in Petaluma, possibly including you. If you want to come to North Bay Python, then you'll need to get here somehow. The good news is that it's reasonably easy to get here, whether you're coming from Sonoma County, elsewhere in the Bay Area, or from further out of town. {% endblock %} {% block content %} -

By Car

+

While this page offers an overview of travel information, we've put together a few special guides for travelers:

+ + + +

Driving and Parking

If you're driving up, Downtown Petaluma is at exit 472A on Highway 101, 35 miles north of the Golden Gate Bridge.

All parking is free in Petaluma, however near the Mystic, street-level parking is time-limited. All-day parking is available at street level west of 5th St (towards 6th St), and at the the undercover garages at Keller St and at Theatre Square. Both garages are in short walking distance of the Mystic.

-

By Public Transit

+

Public Transit

-

Public transit to Petaluma is currently not great.

- -

You can take the 101 bus operated by Golden Gate Transit from downtown San Francisco, or south from Santa Rosa. Depending on sponsorship, we hope to run a free shuttle with BART and Caltrain connections for people from further out of town.

+

Public transit to Petaluma is currently not great. You can take the 101 bus operated by Golden Gate Transit from downtown San Francisco, or south from Santa Rosa. Depending on sponsorship, we hope to run a free shuttle with BART and Caltrain connections for people from further out of town.

SMART, the new train service that runs along the 101 corridor, recently started operations. SMART is not suitable for getting to North Bay Python if you travel on weekends, as the first train leaves after proceedings start. SMART may be a better option than taking the bus between San Rafael and Petaluma if you travel up on weekdays.

-

By Plane

+

Flying

-

Petaluma is within driving distance of all Bay Area Airports, and each airport has varying levels of public transit links to Petaluma.

- -

Sonoma County Airport (STS) 25mi from venue

- -

STS is 30 minutes out of Petaluma, and has nonstop flights to most major west coast cities on Alaska, United, and American, as well as Minneapolis and Las Vegas on Sun Country.

- -

On weekdays and weekend afternoons, SMART train runs from STS to Downtown Petaluma Station, 1/4mi away from the North Bay Python venue. STS is also serviced by the Sonoma County Airport Express bus.

- -

San Francisco International (SFO)/Oakland International (OAK) 50mi from venue

- -

If you can't make it to STS, you can also try San Francisco (SFO) or Oakland (OAK) international airports. These have many more flights than STS, but are twice the distance away, and are subject to more highway traffic between the airport and Petaluma.

- -

Transfers to Petaluma are available through the Sonoma County Airport Express.

- -

San Jose International (SJC)/Sacramento (SMF) 85mi from venue

- -

If you're planning on renting a car, San Jose (SJC) or Sacramento (SMF) are both two hours drive away.

- -

Petaluma Municipal 3mi from venue

- -

If you happen to have an aircraft of your own, Petaluma Municipal Airport is 3 miles down the road.

+

Petaluma is within driving distance of all Bay Area airports, and each airport has varying levels of public transit links to Petaluma. We've prepared a special guide on how to fly to North Bay Python.

{% endblock %} From a6db7f3895fda4b8134d9f1654cb98e89b544bdd Mon Sep 17 00:00:00 2001 From: Josh Simmons Date: Sat, 8 Jun 2019 19:20:19 -0700 Subject: [PATCH 16/26] update team page --- pinaxcon/templates/static_pages/about/team.html | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/pinaxcon/templates/static_pages/about/team.html b/pinaxcon/templates/static_pages/about/team.html index f605959..ec61c94 100644 --- a/pinaxcon/templates/static_pages/about/team.html +++ b/pinaxcon/templates/static_pages/about/team.html @@ -41,12 +41,9 @@ Our team of North Bay and Bay Area locals has years of experience building commu

Sam Kitajima-KimbrelSam is a Python developer and distributed-systems "enthusiast" hailing from Seattle by birth, New York by nurture, and the Bay Area by choice. Five years ago he attended his first PyCon US and hasn't been able to break the habit; after making the jump from audience to stage in 2014 and speaking regularly at events around the world, he was thrilled to join the team when invited by Chris and Josh. Sam currently works at Nuna building healthcare data infrastructure for the U.S. Medicaid and Medicare programs and resides in Oakland with his husband Kameron. (@skimbrel on Twitter)

-

Andrew Godwin, Treasurer

- -

Andrew GodwinAndrew is a Django and Python developer who originally hails from London but moved to the Bay Area five years ago. He's been writing open source software for over a decade as well as working in various different parts of the technology industry, and currently works at Eventbrite. He regularly speaks at Python (and other) events around the world, and has a keen interest in building communities and inclusivity. (@andrewgodwin on Twitter)

-

Josh Simmons, Communications and Outreach

-

Josh SimmonsJosh is a painfully earnest community strategist and recovering web developer. Born and raised in the North Bay, he spent 4.5 years building Web & Interactive Media Professionals (WIMP), a local community, before moving on to do community management for O'Reilly Media. These days Josh does communications for Google Open Source and serves as CFO for the Open Source Initiative (OSI). He loves to help free software communities become more welcoming and introduce students and junior developers to open source. (@joshsimmons on Twitter)

+

Josh SimmonsJosh is a painfully earnest community strategist and recovering web developer. Born and raised in the North Bay, he spent 4.5 years building Web & Interactive Media Professionals (WIMP), a local community, before moving on to do community management for O'Reilly Media. These days Josh does open source strategy for Salesforce and serves as VP of the Open Source Initiative (OSI). He loves to help free software communities become more welcoming and introduce students and junior developers to open source. (@joshsimmons on Twitter)

Sarah Kuchinsky

Sarah is a Python developer, Stanford graduate student, and head organizer of PyLadies Silicon Valley. Sarah fell in love with the Python community in 2012, after joining PyLadies and attending her first PyCon. She joined the North Bay Python organising team for our first conference in 2017. Sarah’s areas of study include algorithms, economics, and health policy modeling. (@sarahkuchinksy on Twitter) @@ -62,6 +59,13 @@ After leaving academia 20 years ago, Max became a freelance developer and open s

+

Emeritus Organizers

+ +

Andrew Godwin, Treasurer

+ +

Andrew GodwinAndrew is a Django and Python developer who originally hails from London but moved to the Bay Area five years ago. He's been writing open source software for over a decade as well as working in various different parts of the technology industry, and currently works at Eventbrite. He regularly speaks at Python (and other) events around the world, and has a keen interest in building communities and inclusivity. (@andrewgodwin on Twitter)

+ +

Advisors

We acknowledge that our small team has limited perspective, and that to build a truly inclusive event, we need to seek the perspectives of a diverse range of people. We thank the following people and organizations for providing us with advice along the way.

From 9cd5241e5892c1f34516e8f3514a083730e65715 Mon Sep 17 00:00:00 2001 From: Josh Simmons Date: Sat, 8 Jun 2019 19:23:54 -0700 Subject: [PATCH 17/26] update links and dates for cfp announcement --- pinaxcon/templates/static_pages/news.md | 22 +++++----------------- 1 file changed, 5 insertions(+), 17 deletions(-) diff --git a/pinaxcon/templates/static_pages/news.md b/pinaxcon/templates/static_pages/news.md index bf4160c..9989546 100644 --- a/pinaxcon/templates/static_pages/news.md +++ b/pinaxcon/templates/static_pages/news.md @@ -1,23 +1,11 @@ - -## Now accepting talk proposals for North Bay Python 2018 +## Now accepting talk proposals for North Bay Python 2019 -**Thursday, July 5, 2018**—The North Bay Python team is excited to announce that the [call for proposals](https://2018.northbaypython.org/program/call-for-proposals) (CFP) is now open! We are seeking speakers of all experience levels to contribute to our second annual conference. The CFP will close on August 10, 2018. +**Monday, July 1, 2019**—The North Bay Python team is excited to announce that the [call for proposals](https://2019.northbaypython.org/program/call-for-proposals) (CFP) is now open! We are seeking speakers of all experience levels to contribute to our second annual conference. The CFP will close on August 8, 2019. -North Bay Python, taking place the weekend of November 3 & 4, 2018, is a single-track event featuring two days of presentations by members of the community. The vast majority of the conference program will come from people who propose talks in our CFP process. Whether you use Python professionally, as a hobbyist, or are just excited about Python or programming and open source, we'd love to hear from you. +North Bay Python, taking place the weekend of November 2 & 3, 2019, is a single-track event featuring two days of presentations by members of the community. The vast majority of the conference program will come from people who propose talks in our CFP process. Whether you use Python professionally, as a hobbyist, or are just excited about Python or programming and open source, we'd love to hear from you. Our program committee, which is responsible for reviewing proposals, is interested in building a program that reflects the diversity of people who are using Python. Never given a presentation before but excited to share? We're here to help you craft a proposal and can refer you to quality resources for making your first conference talk. Not sure what to talk about, but interested in trying? We've got ideas for presentations we'd love to see and we're happy to share them with you! -In order to ensure a balanced program, we are proactively doing outreach to new and experienced speakers alike. We are also including a blind review phase in our [selection process](https://2018.northbaypython.org/program/selection-process) in order to combat bias. Our goal is to have no less than 33% of our speakers be not-men, ideally 50%, and to reflect the racial diversity of United States and Bay Area demographics. +In order to ensure a balanced program, we are proactively doing outreach to new and experienced speakers alike. We are also including a blind review phase in our [selection process](https://2019.northbaypython.org/program/selection-process) in order to combat bias. Our goal is to have no less than 33% of our speakers be not-men, ideally 50%, and to reflect the racial diversity of United States and Bay Area demographics. -Feel free to reach out with any questions, comments, or ideas you have. You can find us on [Twitter](https://twitter.com/northbaypython), [Facebook](https://facebook.com/northbaypython), and [IRC](https://webchat.freenode.net/?channels=%23nbpy), or you can [email us](mailto:program@northbaypython.org). Please, get started today! The [call for proposals](https://2018.northbaypython.org/program/call-for-proposals) closes on August 10, 2018. - - -## North Bay Python joins Software Freedom Conservancy - -**Wednesday, August 16, 2017**—We are proud to announce that North Bay Python is now a member project of [Software Freedom Conservancy](https://sfconservancy.org), a 501(c)(3) charity dedicated to ethical technology and the development and promotion free and open source software. Conservancy will act as our fiscal sponsor, allowing our team to operate without managing our own corporate structure and administrative services. - -Conservancy is home to many popular [free and open source software projects](https://sfconservancy.org/projects/current/), like [Selenium](http://www.seleniumhq.org/), [PyPy](https://pypy.org/), [phpMyAdmin](https://www.phpmyadmin.net/), [Twisted](https://twistedmatrix.com/trac/), and [Outreachy](https://www.gnome.org/outreachy/), some of which run their own events. North Bay Python has the distinct honor of being the first member project that is exclusively focused on organizing community events. - -We couldn't be more excited. We're celebrating by donating five free tickets to Outreachy participants and will be promoting member projects relevant to the Python community at the conference. Interested Outreachy alums (past or present) should [contact us](mailto:outreach@northbaypython.org). We'll also have discounted tickets available for active financial supporters of Software Freedom Conservancy. - -We look forward to working with Conservancy to advance software freedom and expand the community of Python developers. If this is the first time you've heard of Conservancy, we encourage you to check out [their website](https://sfconservancy.org) and give them your support. \ No newline at end of file +Feel free to reach out with any questions, comments, or ideas you have. You can find us on [Twitter](https://twitter.com/northbaypython), [Facebook](https://facebook.com/northbaypython), and [IRC](https://webchat.freenode.net/?channels=%23nbpy), or you can [email us](mailto:program@northbaypython.org). Please, get started today! The [call for proposals](https://2019.northbaypython.org/program/call-for-proposals) closes on August 8, 2019. \ No newline at end of file From c7536e153b36d17fb3e2f1fef4391ada006aabfd Mon Sep 17 00:00:00 2001 From: Josh Simmons Date: Sat, 8 Jun 2019 19:40:57 -0700 Subject: [PATCH 18/26] update news page for cfp announcement --- pinaxcon/templates/static_pages/news.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pinaxcon/templates/static_pages/news.md b/pinaxcon/templates/static_pages/news.md index 9989546..e57709b 100644 --- a/pinaxcon/templates/static_pages/news.md +++ b/pinaxcon/templates/static_pages/news.md @@ -1,11 +1,11 @@ ## Now accepting talk proposals for North Bay Python 2019 -**Monday, July 1, 2019**—The North Bay Python team is excited to announce that the [call for proposals](https://2019.northbaypython.org/program/call-for-proposals) (CFP) is now open! We are seeking speakers of all experience levels to contribute to our second annual conference. The CFP will close on August 8, 2019. +**Monday, July 1, 2019**—The North Bay Python team is excited to announce [we're now seeking proposals to speak](https://2019.northbaypython.org/program/call-for-proposals) at North Bay Python 2019. We are seeking speakers of all experience levels to contribute to our second annual conference. The deadline to submit a proposal is August 8, 2019. -North Bay Python, taking place the weekend of November 2 & 3, 2019, is a single-track event featuring two days of presentations by members of the community. The vast majority of the conference program will come from people who propose talks in our CFP process. Whether you use Python professionally, as a hobbyist, or are just excited about Python or programming and open source, we'd love to hear from you. +North Bay Python, taking place the weekend of November 2 & 3, 2019, is a single-track event featuring two days of presentations by members of the community. Every presentation in the program, except for the keynotes, will come from people who propose talks. Whether you use Python professionally, as a hobbyist, or are just excited about Python or programming and open source, we'd love to hear from you. Our program committee, which is responsible for reviewing proposals, is interested in building a program that reflects the diversity of people who are using Python. Never given a presentation before but excited to share? We're here to help you craft a proposal and can refer you to quality resources for making your first conference talk. Not sure what to talk about, but interested in trying? We've got ideas for presentations we'd love to see and we're happy to share them with you! -In order to ensure a balanced program, we are proactively doing outreach to new and experienced speakers alike. We are also including a blind review phase in our [selection process](https://2019.northbaypython.org/program/selection-process) in order to combat bias. Our goal is to have no less than 33% of our speakers be not-men, ideally 50%, and to reflect the racial diversity of United States and Bay Area demographics. +In order to ensure a balanced program, we are proactively doing outreach to new and experienced speakers alike. We are also including a blind review phase in our [selection process](https://2019.northbaypython.org/program/selection-process) in order to combat bias. We are aiming for gender parity, representation of people with disabilities, and ethnic diversity reflective of United States and Bay Area demographics. Feel free to reach out with any questions, comments, or ideas you have. You can find us on [Twitter](https://twitter.com/northbaypython), [Facebook](https://facebook.com/northbaypython), and [IRC](https://webchat.freenode.net/?channels=%23nbpy), or you can [email us](mailto:program@northbaypython.org). Please, get started today! The [call for proposals](https://2019.northbaypython.org/program/call-for-proposals) closes on August 8, 2019. \ No newline at end of file From 93b7438a523ff6df6d19aa18ffe05a4c5365e5f5 Mon Sep 17 00:00:00 2001 From: Josh Simmons Date: Sat, 8 Jun 2019 19:56:26 -0700 Subject: [PATCH 19/26] update office hours dates --- pinaxcon/templates/static_pages/speak.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pinaxcon/templates/static_pages/speak.md b/pinaxcon/templates/static_pages/speak.md index fccf869..cb4268a 100644 --- a/pinaxcon/templates/static_pages/speak.md +++ b/pinaxcon/templates/static_pages/speak.md @@ -86,7 +86,7 @@ First time speakers are welcomed and we want to help! We offer mentorship, feedb You can [contact the program committee](mailto:program@northbaypython.org) via email or drop by [#nbpy on the Freenode IRC network](https://webchat.freenode.net/?channels=%23nbpy) anytime to connect with a mentor and get help. -Our office hours will be held twice every week **Wednesday at 7pm** and **Friday at 3pm** Pacific Time starting July 11 and finishing August 10. We'll be holding them on IRC, a chat protocol, in the #nbpy channel on the Freenode network. New to IRC? You can use [this web client](https://webchat.freenode.net/?channels=%23nbpy) to connect. +Our office hours will be held twice every week **Wednesday at 7pm** and **Friday at 3pm** Pacific Time starting July 1 and finishing August 8. We'll be holding them on IRC, a chat protocol, in the #nbpy channel on the Freenode network. New to IRC? You can use [this web client](https://webchat.freenode.net/?channels=%23nbpy) to connect. We're happy to help with any of the following: From 8fd34e151b0a67cb91b0beeb3bc531c6675832b6 Mon Sep 17 00:00:00 2001 From: Josh Simmons Date: Sat, 8 Jun 2019 20:53:58 -0700 Subject: [PATCH 20/26] adjust cfp close on news --- pinaxcon/templates/static_pages/news.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pinaxcon/templates/static_pages/news.md b/pinaxcon/templates/static_pages/news.md index e57709b..de2a9bd 100644 --- a/pinaxcon/templates/static_pages/news.md +++ b/pinaxcon/templates/static_pages/news.md @@ -1,6 +1,6 @@ ## Now accepting talk proposals for North Bay Python 2019 -**Monday, July 1, 2019**—The North Bay Python team is excited to announce [we're now seeking proposals to speak](https://2019.northbaypython.org/program/call-for-proposals) at North Bay Python 2019. We are seeking speakers of all experience levels to contribute to our second annual conference. The deadline to submit a proposal is August 8, 2019. +**Monday, July 1, 2019**—The North Bay Python team is excited to announce [we're now seeking proposals to speak](https://2019.northbaypython.org/program/call-for-proposals) at North Bay Python 2019. We are seeking speakers of all experience levels to contribute to our second annual conference. The deadline to submit a proposal is August 9, 2019. North Bay Python, taking place the weekend of November 2 & 3, 2019, is a single-track event featuring two days of presentations by members of the community. Every presentation in the program, except for the keynotes, will come from people who propose talks. Whether you use Python professionally, as a hobbyist, or are just excited about Python or programming and open source, we'd love to hear from you. @@ -8,4 +8,4 @@ Our program committee, which is responsible for reviewing proposals, is interest In order to ensure a balanced program, we are proactively doing outreach to new and experienced speakers alike. We are also including a blind review phase in our [selection process](https://2019.northbaypython.org/program/selection-process) in order to combat bias. We are aiming for gender parity, representation of people with disabilities, and ethnic diversity reflective of United States and Bay Area demographics. -Feel free to reach out with any questions, comments, or ideas you have. You can find us on [Twitter](https://twitter.com/northbaypython), [Facebook](https://facebook.com/northbaypython), and [IRC](https://webchat.freenode.net/?channels=%23nbpy), or you can [email us](mailto:program@northbaypython.org). Please, get started today! The [call for proposals](https://2019.northbaypython.org/program/call-for-proposals) closes on August 8, 2019. \ No newline at end of file +Feel free to reach out with any questions, comments, or ideas you have. You can find us on [Twitter](https://twitter.com/northbaypython), [Facebook](https://facebook.com/northbaypython), and [IRC](https://webchat.freenode.net/?channels=%23nbpy), or you can [email us](mailto:program@northbaypython.org). Please, get started today! The [call for proposals](https://2019.northbaypython.org/program/call-for-proposals) closes on August 9, 2019. \ No newline at end of file From 0574e4e1237d1bccf18796c101f6567feda9da03 Mon Sep 17 00:00:00 2001 From: Josh Simmons Date: Sun, 9 Jun 2019 15:29:53 -0700 Subject: [PATCH 21/26] adjust t-shirt deadline date --- pinaxcon/templates/static_pages/attend/attend.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pinaxcon/templates/static_pages/attend/attend.html b/pinaxcon/templates/static_pages/attend/attend.html index ef36813..8ea507e 100644 --- a/pinaxcon/templates/static_pages/attend/attend.html +++ b/pinaxcon/templates/static_pages/attend/attend.html @@ -27,7 +27,7 @@

Which Ticket?

-

T-shirts are only available for tickets bought before October 8th.

+

T-shirts are only available for tickets bought before October 9th.

Corporate $200

@@ -128,7 +128,7 @@

T-Shirt

We’ll be designing a collectible North Bay Python t-shirt for you to pick up at the conference, and they’ll be available in a variety of sizes, cuts and colors. Each t-shirt costs $30, and for supporter, corporate, and sponsor ticket holders, you’ll get your first t-shirt free!

-

T-shirts are available only for tickets purchased by Tuesday 9 October.

+

T-shirts are available only for tickets purchased by Wednesday, October 9th.

Affiliation

From 720ce2f252a327f5e0bf7ee552278c38e19881df Mon Sep 17 00:00:00 2001 From: Josh Simmons Date: Sun, 9 Jun 2019 15:30:16 -0700 Subject: [PATCH 22/26] correct typo lol --- pinaxcon/templates/static_pages/attend/fly.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pinaxcon/templates/static_pages/attend/fly.html b/pinaxcon/templates/static_pages/attend/fly.html index a319afd..fb44b9d 100644 --- a/pinaxcon/templates/static_pages/attend/fly.html +++ b/pinaxcon/templates/static_pages/attend/fly.html @@ -34,7 +34,7 @@

You can fly into Santa Rosa through many airports, including: Portland (PDX), Los Angeles (LAX), Seattle (SEA), San Diego(SAN), Santa Ana (SNA), Phoenix (PHX), Dallas (DFW), Denver (DEN), and Minneapolis (MSP). You could fly from San Francisco (SFO) if you really wanted to, but we don't recommend it!

-

Oaklank (OAK) and San Francisco (SFO)

+

Oakland (OAK) and San Francisco (SFO)

The airports in Oakland and San Francisco are about 50 miles away from the venue and have many more connecting flights. Because of their distance from the venue, travel times are very subject to freeway traffic and can range from 60 to 90 minutes. Upon arrival, we recommend taking the express bus; it's faster and cheaper than weaving together public transit systems to get here.

From 6047bdfaa4870ec01174a80b77bb282eee20a719 Mon Sep 17 00:00:00 2001 From: Josh Simmons Date: Sun, 9 Jun 2019 16:05:27 -0700 Subject: [PATCH 23/26] add finaid info to traveler pages, update finaid urls --- pinaxcon/templates/static_pages/attend/day-trip.html | 7 +++++++ pinaxcon/templates/static_pages/attend/stay.html | 7 +++++++ pinaxcon/urls.py | 6 +++++- 3 files changed, 19 insertions(+), 1 deletion(-) diff --git a/pinaxcon/templates/static_pages/attend/day-trip.html b/pinaxcon/templates/static_pages/attend/day-trip.html index b1f6568..ef3ebed 100644 --- a/pinaxcon/templates/static_pages/attend/day-trip.html +++ b/pinaxcon/templates/static_pages/attend/day-trip.html @@ -18,6 +18,7 @@
  • How to Get Here
  • Scheduling Your Visit
  • Food and Activities
  • +
  • Financial Aid
  • How to Get Here

    @@ -50,4 +51,10 @@

    From family-friendly hikes to museums, wine tours to wind swept beaches, and lots of kid-friendly attractions, we encourage folks to bring their families along! We will offer free childcare for kids from 6 months to 12 years of age during the conference.

    +

    Financial Aid

    + +

    If your employer isn't paying for you to attend North Bay Python, then you should apply for financial aid. If money is the reason you're considering day tripping to North Bay Python, rather than staying at one of the hotels, then you should definitely apply for financial aid.

    + +

    We're a 501(c)(3) nonprofit and our priority is accessibility. Our goal is for attending North Bay Python to cost about as much as staying home. Learn more about our financial aid program, including application process, timelines, and policies. Don't worry, it's easier than it sounds!

    + {% endblock %} diff --git a/pinaxcon/templates/static_pages/attend/stay.html b/pinaxcon/templates/static_pages/attend/stay.html index 999de40..4f3794b 100644 --- a/pinaxcon/templates/static_pages/attend/stay.html +++ b/pinaxcon/templates/static_pages/attend/stay.html @@ -19,6 +19,7 @@
  • Lodging and Accommodation
  • Scheduling Your Visit
  • Food and Activities
  • +
  • Financial Aid
  • How to Get Here

    @@ -57,4 +58,10 @@

    From family-friendly hikes to museums, wine tours to wind swept beaches, and lots of kid-friendly attractions, we encourage folks to bring their families along and stay as long as they can! We will offer free childcare for kids from 6 months to 12 years of age during the conference.

    +

    Financial Aid

    + +

    If your employer isn't paying for you to attend North Bay Python, then you should apply for financial aid. If you're hesitating about applying for financial aid, don't.

    + +

    We're a 501(c)(3) nonprofit and our priority is accessibility. Our goal is for attending North Bay Python to cost about as much as staying home. Learn more about our financial aid program, including application process, timelines, and policies. Don't worry, it's easier than it sounds!

    + {% endblock %} diff --git a/pinaxcon/urls.py b/pinaxcon/urls.py index 5cfd38a..c0b313d 100644 --- a/pinaxcon/urls.py +++ b/pinaxcon/urls.py @@ -39,7 +39,11 @@ urlpatterns = [ url(r"^tickets$", RedirectView.as_view(url="attend")), url(r"^tickets/buy$", views.buy_ticket, name="buy_ticket"), url(r"^attend/business-case$", TemplateView.as_view(template_name="static_pages/attend/business-case.html"), name="attend/business-case"), - url(r"^attend/finaid$", TemplateView.as_view(template_name="static_pages/attend/finaid.html"), name="attend/finaid"), + + url(r"^financial-aid$", TemplateView.as_view(template_name="static_pages/attend/finaid.html"), name="attend/finaid"), + url(r"^attend/finaid$", RedirectView.as_view(url="/financial-aid")), + url(r"^attend/financial-aid$", RedirectView.as_view(url="/financial-aid")), + url(r"^attend/travel$", TemplateView.as_view(template_name="static_pages/attend/travel.html"), name="attend/travel"), url(r"^attend/hotels$", TemplateView.as_view(template_name="static_pages/attend/hotels.html"), name="attend/hotels"), url(r"^attend/tshirt$", TemplateView.as_view(template_name="static_pages/attend/tshirt.html"), name="attend/tshirt"), From e3d9c0f9161bc70aadfe81769a7d26c09d8abfe8 Mon Sep 17 00:00:00 2001 From: Josh Simmons Date: Tue, 11 Jun 2019 21:42:22 -0700 Subject: [PATCH 24/26] change financial aid to opportunity grant url --- pinaxcon/urls.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pinaxcon/urls.py b/pinaxcon/urls.py index c0b313d..ffd981c 100644 --- a/pinaxcon/urls.py +++ b/pinaxcon/urls.py @@ -40,9 +40,9 @@ urlpatterns = [ url(r"^tickets/buy$", views.buy_ticket, name="buy_ticket"), url(r"^attend/business-case$", TemplateView.as_view(template_name="static_pages/attend/business-case.html"), name="attend/business-case"), - url(r"^financial-aid$", TemplateView.as_view(template_name="static_pages/attend/finaid.html"), name="attend/finaid"), - url(r"^attend/finaid$", RedirectView.as_view(url="/financial-aid")), - url(r"^attend/financial-aid$", RedirectView.as_view(url="/financial-aid")), + url(r"^opportunity-grant$", TemplateView.as_view(template_name="static_pages/attend/finaid.html"), name="opportunity-grant"), + url(r"^attend/finaid$", RedirectView.as_view(url="/opportunity-grant")), + url(r"^attend/financial-aid$", RedirectView.as_view(url="/opportunity-grant")), url(r"^attend/travel$", TemplateView.as_view(template_name="static_pages/attend/travel.html"), name="attend/travel"), url(r"^attend/hotels$", TemplateView.as_view(template_name="static_pages/attend/hotels.html"), name="attend/hotels"), From b5ea1c4323ee667eb7d1ad277380fe2acf2cca6a Mon Sep 17 00:00:00 2001 From: Josh Simmons Date: Tue, 11 Jun 2019 22:11:42 -0700 Subject: [PATCH 25/26] correct windswept --- pinaxcon/templates/static_pages/about/petaluma.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pinaxcon/templates/static_pages/about/petaluma.html b/pinaxcon/templates/static_pages/about/petaluma.html index f8e98fb..0b13533 100644 --- a/pinaxcon/templates/static_pages/about/petaluma.html +++ b/pinaxcon/templates/static_pages/about/petaluma.html @@ -21,7 +21,7 @@

    Our venue, The Mystic Theatre, is not the only local example of early 1900s architecture, either: Downtown is full of great examples of Victorian-era buildings that survived the 1906 earthquake. Just down the road, you'll find the center of the maker movement and a thriving craft brewery scene.

    -

    From family-friendly hikes to museums, wine tours to wind swept beaches, and lots of kid-friendly attractions, there's a lot to do in see in the region. We encourage attendees to bring their families and extend their stay beyond the conference!

    +

    From family-friendly hikes to museums, wine tours to windswept beaches, and lots of kid-friendly attractions, there's a lot to do in see in the region. We encourage attendees to bring their families and extend their stay beyond the conference!

    Travel and Lodging

    From 44e7a05b85da9ff9cefbe813cd190e721bf0627a Mon Sep 17 00:00:00 2001 From: Josh Simmons Date: Tue, 11 Jun 2019 22:16:40 -0700 Subject: [PATCH 26/26] initial news article only --- pinaxcon/templates/static_pages/news.md | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/pinaxcon/templates/static_pages/news.md b/pinaxcon/templates/static_pages/news.md index de2a9bd..85a6d14 100644 --- a/pinaxcon/templates/static_pages/news.md +++ b/pinaxcon/templates/static_pages/news.md @@ -1,11 +1,9 @@ -## Now accepting talk proposals for North Bay Python 2019 +## Third annual North Bay Python to take place in Petaluma, California on November 2-3, 2019 -**Monday, July 1, 2019**—The North Bay Python team is excited to announce [we're now seeking proposals to speak](https://2019.northbaypython.org/program/call-for-proposals) at North Bay Python 2019. We are seeking speakers of all experience levels to contribute to our second annual conference. The deadline to submit a proposal is August 9, 2019. +**Tuesday, April 23, 2019**—The North Bay Python team is excited to announce we’re on for our third annual conference! North Bay Python 2019 will be hosted the first weekend of November 2nd and 3rd at the Mystic Theater in downtown Petaluma, an hour north of the Golden Gate. -North Bay Python, taking place the weekend of November 2 & 3, 2019, is a single-track event featuring two days of presentations by members of the community. Every presentation in the program, except for the keynotes, will come from people who propose talks. Whether you use Python professionally, as a hobbyist, or are just excited about Python or programming and open source, we'd love to hear from you. +Hundreds of Pythonistas and the Python-curious will gather for the conference in a historic music venue, at the intersection of Sonoma, Marin, and Napa County. Some will travel solo, others may bring their families along to enjoy local hikes, museums, wine tours, windswept beaches, and lots of kid-friendly activities. -Our program committee, which is responsible for reviewing proposals, is interested in building a program that reflects the diversity of people who are using Python. Never given a presentation before but excited to share? We're here to help you craft a proposal and can refer you to quality resources for making your first conference talk. Not sure what to talk about, but interested in trying? We've got ideas for presentations we'd love to see and we're happy to share them with you! +Details about travel, lodging, accommodation, and much more can be found on our website. In July, we will begin seeking proposals from people interested in speaking at the conference. In August, we’ll begin selling tickets. -In order to ensure a balanced program, we are proactively doing outreach to new and experienced speakers alike. We are also including a blind review phase in our [selection process](https://2019.northbaypython.org/program/selection-process) in order to combat bias. We are aiming for gender parity, representation of people with disabilities, and ethnic diversity reflective of United States and Bay Area demographics. - -Feel free to reach out with any questions, comments, or ideas you have. You can find us on [Twitter](https://twitter.com/northbaypython), [Facebook](https://facebook.com/northbaypython), and [IRC](https://webchat.freenode.net/?channels=%23nbpy), or you can [email us](mailto:program@northbaypython.org). Please, get started today! The [call for proposals](https://2019.northbaypython.org/program/call-for-proposals) closes on August 9, 2019. \ No newline at end of file +Feel free to reach out with any questions, comments, or ideas you have. You can find us on [Twitter](https://twitter.com/northbaypython), [Facebook](https://facebook.com/northbaypython), and [IRC](https://webchat.freenode.net/?channels=%23nbpy), or you can [email us](mailto:program@northbaypython.org).