From 12d1e19d630f57b66b6ba6d20d57b9a589c11577 Mon Sep 17 00:00:00 2001 From: Josh Simmons Date: Sat, 8 Jun 2019 11:58:47 -0700 Subject: [PATCH 01/35] 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/35] 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/35] 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/35] 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/35] 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/35] 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/35] 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 @@
-
-

Speakers

- -
- -
-
-
-
-
-
-

Mariatta Wijaya

- Keynote Speaker -
- -
-
-
-
-
-
-

Robert M. "r0ml" Lefkowitz

- Keynote Speaker -
- - {% speakers as speakers %} - {% for speaker in speakers %} -
-
-
- {% if speaker.photo %} -
- {% else %} -
- {% endif %} -
-
- {% for presentation in speaker.all_presentations %} - -

{{ speaker.conferencespeaker.name }}

- {{ presentation.title }} -
- {% endfor %} -
- {% endfor %} - -{% comment %} -
-
-
-
-
-
-

VM Brasseur

- Speaker Training -
- -
-{% endcomment %}
- - -
- - -
-
-
-

Downtown Petaluma

- -

North Bay Python's home is Petaluma, a delightfully quaint dairy town, nestled on a river at the edge of California's Wine Country. Here's what you can look forward to:

- -
    -
  • An historic venue with countless restaurants and coffee shops in walking distance
  • -
  • World-famous craft food and drink producers on your doorstep
  • -
  • Charming small-town hotels, as close as one block away
  • -
- -

… and it's only an hour away from San Francisco (on a good day).

-
- - -
- -
-
-

Sponsors

- - {% sponsor_levels as levels %} - - -
- - -
- -
-
-
-

Inclusion and Diversity

- -

North Bay Python is proud to be founded on a commitment to inclusion and diversity. Here's what we commit to:

- -
    -
  • A strong Code of Conduct and enforcement policy built on the Python Software Foundation's PyCon US policy.
  • -
  • Diversity targets for speakers and attendees.
  • -
  • Financial assistance for speakers who need it.
  • -
  • Low-cost tickets, with fees enthusiastically waived on request.
  • -
-
- - -
- {% endblock %} diff --git a/pinaxcon/templates/static_pages/homepage0.html b/pinaxcon/templates/static_pages/homepage0.html new file mode 100644 index 0000000..2a24bf3 --- /dev/null +++ b/pinaxcon/templates/static_pages/homepage0.html @@ -0,0 +1,250 @@ +{% extends "site_base_home.html" %} + +{% load i18n %} +{% load staticfiles %} +{% load thumbnail %} +{% load sponsorship_tags %} +{% load schedule_tags %} + +{% block head_title %}November 3 and 4, 2018{% endblock %} + +{% block body_class %}home{% endblock %} + +{% block body %} + +
+
+
+
+
+
+
+
+

North Bay Python

+

The Python conference in a live music venue

+
+ +
+
+

+ The Mystic Theatre
+ Petaluma, California +

+ +

+ November 3 & 4, 2018
+ Tickets on sale now! +

+
+ + +
+ +
+ + +
+ +
+
+

Speakers

+ +
+ +
+
+
+
+
+
+

Mariatta Wijaya

+ Keynote Speaker +
+ +
+
+
+
+
+
+

Robert M. "r0ml" Lefkowitz

+ Keynote Speaker +
+ + {% speakers as speakers %} + {% for speaker in speakers %} +
+
+
+ {% if speaker.photo %} +
+ {% else %} +
+ {% endif %} +
+
+ {% for presentation in speaker.all_presentations %} + +

{{ speaker.conferencespeaker.name }}

+ {{ presentation.title }} +
+ {% endfor %} +
+ {% endfor %} + +{% comment %} +
+
+
+
+
+
+

VM Brasseur

+ Speaker Training +
+ +
+{% endcomment %} +
+ + +
+ + +
+
+
+

Downtown Petaluma

+ +

North Bay Python's home is Petaluma, a delightfully quaint dairy town, nestled on a river at the edge of California's Wine Country. Here's what you can look forward to:

+ +
    +
  • An historic venue with countless restaurants and coffee shops in walking distance
  • +
  • World-famous craft food and drink producers on your doorstep
  • +
  • Charming small-town hotels, as close as one block away
  • +
+ +

… and it's only an hour away from San Francisco (on a good day).

+
+ + +
+ +
+
+

Sponsors

+ + {% sponsor_levels as levels %} + + +
+ + +
+ +
+
+
+

Inclusion and Diversity

+ +

North Bay Python is proud to be founded on a commitment to inclusion and diversity. Here's what we commit to:

+ +
    +
  • A strong Code of Conduct and enforcement policy built on the Python Software Foundation's PyCon US policy.
  • +
  • Diversity targets for speakers and attendees.
  • +
  • Financial assistance for speakers who need it.
  • +
  • Low-cost tickets, with fees enthusiastically waived on request.
  • +
+
+ + +
+ +{% endblock %} From 2b4006877670e2d8ba91f06d435bdd269dd36873 Mon Sep 17 00:00:00 2001 From: Christopher Neugebauer <_@chrisjrn.com> Date: Sat, 8 Jun 2019 17:14:50 -0700 Subject: [PATCH 11/35] CFP -> Speak --- .../program/call_for_proposals.html | 24 ------------------- pinaxcon/templates/static_pages/speak.html | 24 +++++++++++++++++++ .../call_for_proposals.md => speak.md} | 14 +++++------ pinaxcon/urls.py | 7 +++--- 4 files changed, 35 insertions(+), 34 deletions(-) delete mode 100644 pinaxcon/templates/static_pages/program/call_for_proposals.html create mode 100644 pinaxcon/templates/static_pages/speak.html rename pinaxcon/templates/static_pages/{program/call_for_proposals.md => speak.md} (94%) diff --git a/pinaxcon/templates/static_pages/program/call_for_proposals.html b/pinaxcon/templates/static_pages/program/call_for_proposals.html deleted file mode 100644 index 7a7983b..0000000 --- a/pinaxcon/templates/static_pages/program/call_for_proposals.html +++ /dev/null @@ -1,24 +0,0 @@ -{% extends "page_with_title_and_lede.html" %} - -{% load i18n %} -{% load markdown_deux_tags %} - -{% block head_title %}Call for Proposals{% endblock %} - -{% block heading %}Call for Proposals{% endblock %} - -{% block body_class %}program{% endblock %} - -{% block lede %} - -North Bay Python is seeking speakers of all experience levels to contribute to our second conference program! We'd love to hear from you whether you use Python professionally, as a hobbyist, or are just excited about Python, programming, and free and open source software. - -{% endblock %} - -{% block content %} - {% markdown %} - -{% include "static_pages/program/call_for_proposals.md" %} - - {% endmarkdown %} -{% endblock %} diff --git a/pinaxcon/templates/static_pages/speak.html b/pinaxcon/templates/static_pages/speak.html new file mode 100644 index 0000000..8d63c74 --- /dev/null +++ b/pinaxcon/templates/static_pages/speak.html @@ -0,0 +1,24 @@ +{% extends "page_with_title_and_lede.html" %} + +{% load i18n %} +{% load markdown_deux_tags %} + +{% block head_title %}Speak at North Bay Python{% endblock %} + +{% block heading %}Speak at North Bay Python{% endblock %} + +{% block body_class %}program{% endblock %} + +{% block lede %} + +North Bay Python is seeking speakers of all experience levels to contribute to our conference program! We'd love to hear from you whether you use Python professionally, as a hobbyist, or are just excited about Python, programming, and free and open source software. + +{% endblock %} + +{% block content %} + {% markdown %} + +{% include "static_pages/speak.md" %} + + {% endmarkdown %} +{% endblock %} diff --git a/pinaxcon/templates/static_pages/program/call_for_proposals.md b/pinaxcon/templates/static_pages/speak.md similarity index 94% rename from pinaxcon/templates/static_pages/program/call_for_proposals.md rename to pinaxcon/templates/static_pages/speak.md index fc3a708..fccf869 100644 --- a/pinaxcon/templates/static_pages/program/call_for_proposals.md +++ b/pinaxcon/templates/static_pages/speak.md @@ -1,4 +1,4 @@ -### The North Bay Python 2018 CFP is open! +### Proposal submissions for North Bay Python 2019 are open! There's information and resources below that you should read, but in case you've already read it and want to dive in now: @@ -14,11 +14,11 @@ Portions of this page were drawn from ideas seen on [DjangoCon EU](https://djang ## Dates -+ **July 5**: CFP opens -+ **August 10**: CFP closes -+ **Week of September 10**: Acceptance notifications sent -+ **Week of September 17**: Speaker confirmations due; program finalized and announced -+ **November 3–4**: Conference happens! ++ **July 1**: Proposal submissions open ++ **August 8**: Proposal submissions close ++ **Week of August 23**: Acceptance notifications sent ++ **Week of September 9**: Speaker confirmations due; program finalized and announced ++ **November 2–3**: Conference happens! ## Speaker Benefits @@ -37,7 +37,7 @@ North Bay Python is a conference in support of the local programmer community ou ## Audience -We anticipate more than 300 attendees at our 2018 conference. In 2017, we had 230 attendees from California and beyond, including: +We anticipate 200-300 attendees at our 2019 conference. In 2017, we had 230 attendees from California and beyond, including: + 78% from the San Francisco Bay Area, including 25% from Sonoma County + 5% from elsewhere in California diff --git a/pinaxcon/urls.py b/pinaxcon/urls.py index a54b73c..112d52b 100644 --- a/pinaxcon/urls.py +++ b/pinaxcon/urls.py @@ -28,10 +28,11 @@ 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/call-for-proposals$", RedirectView.as_view(url="/speak")), 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")), - url(r"^cfp$", RedirectView.as_view(url="program/call-for-proposals")), + url(r"^proposals$", RedirectView.as_view(url="/speak")), + url(r"^cfp$", RedirectView.as_view(url="/speak")), + url(r"^speak$", TemplateView.as_view(template_name="static_pages/speak.html"), name="speak"), # attend url(r"^attend$", TemplateView.as_view(template_name="static_pages/attend/attend.html"), name="attend/attend"), From ef8c9f9c510633557ff1ff2deaff1083c599e8f9 Mon Sep 17 00:00:00 2001 From: Josh Simmons Date: Sat, 8 Jun 2019 17:43:00 -0700 Subject: [PATCH 12/35] add some new url aliases --- pinaxcon/urls.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pinaxcon/urls.py b/pinaxcon/urls.py index 57685f3..069af19 100644 --- a/pinaxcon/urls.py +++ b/pinaxcon/urls.py @@ -44,6 +44,8 @@ urlpatterns = [ url(r"^attend/tshirt$", TemplateView.as_view(template_name="static_pages/attend/tshirt.html"), name="attend/tshirt"), url(r"^attend/accessibility-and-accommodations$",TemplateView.as_view(template_name="static_pages/attend/accommodations.html"), name="attend/accessibility-and-accommodations"), url(r"^accessibility$", RedirectView.as_view(url="attend/accessibility-and-accommodations")), + url(r"^accommodations$", RedirectView.as_view(url="attend/accessibility-and-accommodations")), + url(r"^a11y$", RedirectView.as_view(url="attend/accessibility-and-accommodations")), url(r"^guides$",TemplateView.as_view(template_name="static_pages/attend/guides.html"), name="attend/guides"), url(r"^guide$", RedirectView.as_view(url="guides")), @@ -57,6 +59,7 @@ urlpatterns = [ url(r"^emergency$", RedirectView.as_view(url="safety")), url(r"^attend/food$", TemplateView.as_view(template_name="static_pages/attend/food.html"), name="attend/food"), + url(r"^food-guide$", RedirectView.as_view(url="attend/food")), url(r"^food$", RedirectView.as_view(url="attend/food")), url(r"^attend/transit$", TemplateView.as_view(template_name="static_pages/attend/transit.html"), name="attend/transit"), url(r"^transit$", RedirectView.as_view(url="attend/transit")), From e1481a8bc9dc9708bdb7eab19a82d5c1f5e3209c Mon Sep 17 00:00:00 2001 From: Josh Simmons Date: Sat, 8 Jun 2019 17:43:40 -0700 Subject: [PATCH 13/35] update a11y and fin aid pages --- pinaxcon/templates/static_pages/attend/accommodations.html | 6 ++++-- pinaxcon/templates/static_pages/attend/finaid.html | 4 ++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/pinaxcon/templates/static_pages/attend/accommodations.html b/pinaxcon/templates/static_pages/attend/accommodations.html index 5301805..73c4d14 100644 --- a/pinaxcon/templates/static_pages/attend/accommodations.html +++ b/pinaxcon/templates/static_pages/attend/accommodations.html @@ -43,8 +43,10 @@ This guide summarizes accessibility, accommodations, and known issues. If you ha

Parents with Children

-

We offer access to a private room with power for parents to nurse or pump milk just across the street from the conference venue at WORK Petaluma where parents can also find a bathroom with a changing table.

+

We offer access to a private room with power for parents to nurse or pump milk just across the street from the conference venue at WORK Petaluma, where parents can also find a bathroom with a changing table.

-

We will be offering childcare this year. Please indicate whether or not you'd like to take advantage of on-site childcare when you register. More details will be announced soon.

+

We offer free childcare during the conference. Please indicate whether or not you'd like to take advantage of on-site childcare when you register and we'll follow up with additional details.

+ +

Last year we worked with Corporate Kids Events and provided childcare Saturday and Sunday from 9:00am and 7:00pm, so parents don't have to miss a moment of the core conference which runs from 10:00am to 6:00pm.

{% endblock %} diff --git a/pinaxcon/templates/static_pages/attend/finaid.html b/pinaxcon/templates/static_pages/attend/finaid.html index 596d503..852928e 100644 --- a/pinaxcon/templates/static_pages/attend/finaid.html +++ b/pinaxcon/templates/static_pages/attend/finaid.html @@ -9,7 +9,7 @@ {% block body_class %}attend{% endblock %} {% block lede %} -Part of the Python community spirit is making knowledge – and access to the community – available to everyone who needs it. If don't live near Petaluma and need help getting here, we want to help out. +Part of the Python community spirit is making knowledge – and access to the community – available to everyone who needs it. If you don't live near Petaluma and need help getting here, we want to help out. {% endblock %} {% block content %} @@ -30,7 +30,7 @@ Part of the Python community spirit is making knowledge – and access to th

Apply

-

To apply, please fill out the application form.

+

To apply, please fill out the application form.

Applications will be assessed every Friday, starting September 21st until October 19th, or our budget is exhausted, whichever comes first. To increase your chances of getting accepted, please apply as soon as possible.

From fcea921d9660cc546e7e890e85ee696ead6a8e27 Mon Sep 17 00:00:00 2001 From: Josh Simmons Date: Sat, 8 Jun 2019 18:16:17 -0700 Subject: [PATCH 14/35] update dates and travel details --- .../static_pages/about/north_bay_python.html | 4 ++-- .../templates/static_pages/about/petaluma.html | 16 ++++++++++++---- .../templates/static_pages/attend/day-trip.html | 2 +- pinaxcon/templates/static_pages/attend/fly.html | 2 +- pinaxcon/templates/static_pages/attend/stay.html | 2 +- 5 files changed, 17 insertions(+), 9 deletions(-) diff --git a/pinaxcon/templates/static_pages/about/north_bay_python.html b/pinaxcon/templates/static_pages/about/north_bay_python.html index a0f115c..e6ffd56 100644 --- a/pinaxcon/templates/static_pages/about/north_bay_python.html +++ b/pinaxcon/templates/static_pages/about/north_bay_python.html @@ -14,9 +14,9 @@ {% block content %} -

North Bay Python is a two-day, single-track Python conference held at the Mystic Theatre in Historic Downtown Petaluma, California, over the weekend of November 3 & 4, 2018.

+

North Bay Python is a two-day, single-track Python conference held at the Mystic Theatre in Historic Downtown Petaluma, California, over the weekend of November 2 & 3, 2019.

-

We're a nonprofit conference for professionals, enthusiasts and students alike. We're focused on inclusion, accessibility, diversity, and affordability. Most importantly, we're planning a great lineup of talks from all over the Python ecosystem, with plenty of time to meet new people and develop new ideas.

+

We're a nonprofit conference for professionals, enthusiasts and students alike. We're focused on producing an event that's inclusive, accessible, affordable, and representative of the community. Most importantly, we're planning a great lineup of talks from all over the Python ecosystem, with plenty of time to make new connections and enjoy a weekend in the North Bay.

Our venue, the Mystic Theatre in Downtown Petaluma, is a beautiful example of an early 1900s Vaudeville theatre. You can find over 50 different food and drink options within a short walk, and the nearest hotel is only a block away.

diff --git a/pinaxcon/templates/static_pages/about/petaluma.html b/pinaxcon/templates/static_pages/about/petaluma.html index e63d0f0..f8e98fb 100644 --- a/pinaxcon/templates/static_pages/about/petaluma.html +++ b/pinaxcon/templates/static_pages/about/petaluma.html @@ -9,21 +9,29 @@ {% block body_class %}about{% endblock %} {% block lede %} - The best town you probably haven't bothered visiting yet. + The best town you probably haven't visited yet. {% endblock %} {% block content %} -

North Bay Python's home is Petaluma, a delightfully quaint dairy town, nestled on a river at the southern edge of California's Wine Country. We've got beautiful scenery right on our doorstep, and we're less than an hour's drive from San Francisco over the Golden Gate Bridge. We've got a whole page dedicated to Petaluma if you want to learn more about it.

+

North Bay Python's home is Petaluma, a delightfully quaint dairy town, nestled on a river at the southern edge of California's Wine Country and 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.

+ +

We've got beautiful scenery right on our doorstep, and we're less than an hour's drive from San Francisco over the Golden Gate Bridge.

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!

+

Travel and Lodging

-

The Golden Gate Bridge is well-known to San Franciscans as being approximately 8,000 miles long and shrouded in fog, so few ever cross up into the North Bay. Happily, the drive north is easy and it can be swift. There are many ways to get to Petaluma, we've covered driving, public transit, and flights on the How to Get Here page.

+

The Golden Gate Bridge is well-known to San Franciscans for being a million miles long and ever shrouded in fog, so few ever cross up into the North Bay. Happily, the trek north can be easy, if not swift.

-

When you get here, you're sure to find a nice place to stay that fits your budget. {%comment %}You can find a range of options, and some special discounts, available on the Where to Stay page.{%endcomment%} We'll have group rates and discounts at local hotels when tickets are available.

+

Regardless of where you're coming from, we've got guides on how to fly to North Bay Python, how to make day trips from elsewhere in the Bay Area, and how to make a weekend of it and stay around Petaluma. We've got an overview focused on travel on the How to Get Here page.

+ +

When you get here, you're sure to find a nice place to stay that fits your budget. You can find a range of options, and some special discounts, available on the Where to Stay page. {% comment %}We'll have group rates and discounts at local hotels when tickets are available.{% endcomment %}

+ +

To make your visit even better, we've prepared a food guide which will help you find good eats in Petaluma. If you're sticking around beyond the conference or looking further afield, you'll want to check out your favorite food or restaurant guide.

{% endblock %} diff --git a/pinaxcon/templates/static_pages/attend/day-trip.html b/pinaxcon/templates/static_pages/attend/day-trip.html index f7984aa..f91265f 100644 --- a/pinaxcon/templates/static_pages/attend/day-trip.html +++ b/pinaxcon/templates/static_pages/attend/day-trip.html @@ -44,7 +44,7 @@

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. 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.

+

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. 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! 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/fly.html b/pinaxcon/templates/static_pages/attend/fly.html index 75df3b9..56577e7 100644 --- a/pinaxcon/templates/static_pages/attend/fly.html +++ b/pinaxcon/templates/static_pages/attend/fly.html @@ -64,7 +64,7 @@

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!

+

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.

diff --git a/pinaxcon/templates/static_pages/attend/stay.html b/pinaxcon/templates/static_pages/attend/stay.html index ee2e5f0..1726936 100644 --- a/pinaxcon/templates/static_pages/attend/stay.html +++ b/pinaxcon/templates/static_pages/attend/stay.html @@ -51,7 +51,7 @@

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!

+

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.

From f6dbc445097df9c6a5af84d906619b44c7230935 Mon Sep 17 00:00:00 2001 From: Josh Simmons Date: Sat, 8 Jun 2019 18:44:25 -0700 Subject: [PATCH 15/35] update childcare, add finaid and a11y to attend page --- .../templates/static_pages/attend/attend.html | 22 +++++++++++++------ 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/pinaxcon/templates/static_pages/attend/attend.html b/pinaxcon/templates/static_pages/attend/attend.html index cf967e1..ef36813 100644 --- a/pinaxcon/templates/static_pages/attend/attend.html +++ b/pinaxcon/templates/static_pages/attend/attend.html @@ -10,13 +10,15 @@ {% block body_class %}attend{% endblock %} {% block lede %} - P-Town. Rivertown. That place where the cows are. No matter what you call Petaluma, we want you to join us here for a great weekend of Python talks and networking. North Bay Python tickets start at $25 for unaffiliated individuals, and $180 for corporate attendees. + P-Town. Rivertown. That place with epic cow pastures and a new AVA. No matter what you call Petaluma, we want you to join us here for a great weekend of Python talks and networking. North Bay Python tickets start at $25 for unaffiliated individuals, and $180 for corporate attendees. {% endblock %} {% block content %} -

To buy a ticket, create an account, and go to the dashboard. If you've already bought a ticket, you can check out our information on where to stay and how to get here.

+

To buy a ticket, create an account, and go to the dashboard. If you've already bought a ticket, you can check out our information on where to stay and how to get here. + +

We also have guides on how to fly to North Bay Python, how to make day trips from elsewhere in the Bay Area, and how to make a weekend of it and stay around Petaluma.

Attendees should fill out their own registration form. When you complete the form, you'll receive a link that you can pass on if someone is paying on your behalf.

@@ -25,7 +27,7 @@

Which Ticket?

-

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

+

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

Corporate $200

@@ -120,8 +122,8 @@

To make up for it, we’ve located our conference right in the middle of Historic Downtown Petaluma’s restaurant district. You can find everything from market delis and barbecue, through to Michelin-rated restaurants, all within 5 minutes walk. You’ll get a better lunch than we’d ever be able to cater, for much less. We'll have a locals' guide to Petaluma to help you find places to eat.

-

Morning Refreshments (TBA)

-

If budget permits, or if we find a sponsor, we’ll provide coffee, tea, hot chocolate, and some light snacks in the morning before proceedings kick off on both days.

+

Morning Refreshments

+

We'll provide coffee, tea, hot chocolate, and some light snacks in the morning before proceedings kick off on both days.

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!

@@ -141,7 +143,13 @@

Sponsor tickets come with sponsor benefits. To find out more, see our Sponsors page.

-

Childcare, thanks to Indeed

-

Thanks to our sponsor, Indeed, we'll be offering childcare at a nearby venue. If you have children, we'll have qualified carers available to take care of them.

+

Childcare

+

We'll be offering childcare at a nearby venue. If you have children, we'll have qualified care providers available to take care of them. Parents can find more useful information on our Accommodations page.

+ +

Accessibility and Accommodations

+

Please check out our Accessibility and Accommodations page. Whether you have mobility, hearing, or vision issues, or a service animal, dietary restrictions, or something else you need to consider to navigate North Bay Python, we've got you covered. Please don't hesitate to reach out if you have questions we can help answer!

+ +

Financial Aid

+

If you don't have an employer paying to send you to North Bay Python, we encourage you to apply for financial aid. We can help defray the cost of travel, food, and lodging, as our goal is for attending North Bay Python to cost you about as much as staying home.

{% endblock %} From 800d51ca4460d0774879a6f195fccff1ac79b523 Mon Sep 17 00:00:00 2001 From: Josh Simmons Date: Sat, 8 Jun 2019 19:15:55 -0700 Subject: [PATCH 16/35] tweak dates --- pinaxcon/templates/static_pages/terms_and_conditions.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pinaxcon/templates/static_pages/terms_and_conditions.md b/pinaxcon/templates/static_pages/terms_and_conditions.md index f1cf240..7eb88ab 100644 --- a/pinaxcon/templates/static_pages/terms_and_conditions.md +++ b/pinaxcon/templates/static_pages/terms_and_conditions.md @@ -15,14 +15,14 @@ All transactions are performed through a payment gateway facility and use SSL en Cancellation Policy ------------------- -**Cancellations made prior to October 2, 2018**: Incur a cancellation fee of $25 or 15% of the ticket cost, whichever is greater, which will be deducted from any registration fee paid. The balance will be refunded. +**Cancellations made prior to October 1, 2019**: Incur a cancellation fee of $25 or 15% of the ticket cost, whichever is greater, which will be deducted from any registration fee paid. The balance will be refunded. -**Cancellations made after October 2, 2018**: No refund. +**Cancellations made after October 1, 2019**: No refund. Substitutions ------------- -You may substitute another person, however you must contact us with this person's details. If you wish to substitute after October 2, 2018 please note that we will not be able to provide any personalized items. +You may substitute another person, however you must contact us with this person's details. If you wish to substitute after October 1, 2018 please note that we will not be able to provide any personalized items. Privacy Notice -------------- From 5bf97ad4dfeda238d66d680a0e57b6935e0804be Mon Sep 17 00:00:00 2001 From: Josh Simmons Date: Sat, 8 Jun 2019 19:16:43 -0700 Subject: [PATCH 17/35] properly integrate new TRAVELER pages and update general travel info --- .../static_pages/attend/day-trip.html | 4 +- .../templates/static_pages/attend/fly.html | 2 +- .../templates/static_pages/attend/hotels.html | 9 ++-- .../templates/static_pages/attend/stay.html | 2 +- .../static_pages/attend/transit.html | 4 +- .../templates/static_pages/attend/travel.html | 42 +++++++------------ 6 files changed, 25 insertions(+), 38 deletions(-) diff --git a/pinaxcon/templates/static_pages/attend/day-trip.html b/pinaxcon/templates/static_pages/attend/day-trip.html index f91265f..b1f6568 100644 --- a/pinaxcon/templates/static_pages/attend/day-trip.html +++ b/pinaxcon/templates/static_pages/attend/day-trip.html @@ -44,7 +44,9 @@

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, forests, agriculture, fine food, wine, beer, and spirits. 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.

+

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.

+ +

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! 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/fly.html b/pinaxcon/templates/static_pages/attend/fly.html index 56577e7..a319afd 100644 --- a/pinaxcon/templates/static_pages/attend/fly.html +++ b/pinaxcon/templates/static_pages/attend/fly.html @@ -66,7 +66,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/hotels.html b/pinaxcon/templates/static_pages/attend/hotels.html index 5e89bcd..c7a55c4 100644 --- a/pinaxcon/templates/static_pages/attend/hotels.html +++ b/pinaxcon/templates/static_pages/attend/hotels.html @@ -30,7 +30,7 @@ @@ -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
@@ -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
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 18/35] 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 19/35] 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 20/35] 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 21/35] 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 22/35] 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 a05d391aa06d28172093851b9c9b963352dd7ce9 Mon Sep 17 00:00:00 2001 From: Christopher Neugebauer <_@chrisjrn.com> Date: Sun, 9 Jun 2019 14:09:07 -0700 Subject: [PATCH 23/35] Fix CFP end date --- 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..63a02f7 100644 --- a/pinaxcon/templates/static_pages/speak.md +++ b/pinaxcon/templates/static_pages/speak.md @@ -15,7 +15,7 @@ Portions of this page were drawn from ideas seen on [DjangoCon EU](https://djang ## Dates + **July 1**: Proposal submissions open -+ **August 8**: Proposal submissions close ++ **August 9**: Proposal submissions close + **Week of August 23**: Acceptance notifications sent + **Week of September 9**: Speaker confirmations due; program finalized and announced + **November 2–3**: Conference happens! From c00ff7543509b8b07fb4abf6fffea3b340e360c2 Mon Sep 17 00:00:00 2001 From: Christopher Neugebauer <_@chrisjrn.com> Date: Sun, 9 Jun 2019 14:09:15 -0700 Subject: [PATCH 24/35] WIP homepage --- pinaxcon/templates/static_pages/homepage.html | 50 +++++++------------ static/scss/custom.scss | 26 +++++++++- 2 files changed, 43 insertions(+), 33 deletions(-) diff --git a/pinaxcon/templates/static_pages/homepage.html b/pinaxcon/templates/static_pages/homepage.html index 9a02f26..9a23ab2 100644 --- a/pinaxcon/templates/static_pages/homepage.html +++ b/pinaxcon/templates/static_pages/homepage.html @@ -13,41 +13,29 @@ {% block body %}
-
+
+ +
-
-
-
-
-
-

North Bay Python

-

The Python conference in a live music venue

-
- -
-
-

- The Mystic Theatre
- Petaluma, California -

- -

- November 3 & 4, 2018
- Tickets on sale now! -

-
- -
- +
+

North Bay
+ Python

+

+ A one-track Python conference, north of the Golden Gate. + November 2 & 3, 2019. + Mystic Theatre, Petaluma, California +

-
diff --git a/static/scss/custom.scss b/static/scss/custom.scss index 7851449..b5d9568 100644 --- a/static/scss/custom.scss +++ b/static/scss/custom.scss @@ -189,6 +189,18 @@ $homepage-block-min-height: 480px; min-height: ($homepage-block-min-height - 80px); } + +.homepage-block-content-cloudsep { + min-height: ($homepage-block-min-height - 200px); +} + + +.homepage-block-bloop { + min-height: 120px; +} + + + /* ??? */ .homepage-block-footer { @@ -304,7 +316,7 @@ $homepage-block-min-height: 480px; height: 100%; } -.floop { +.grey-gradient { background-size: 100%; background-position: bottom; @@ -476,7 +488,7 @@ span.date { footer .footer-copy { margin-left: 1em; - + p { font-size: 16px; } @@ -522,8 +534,18 @@ footer .footer-copy { } } +.homepage-title { + font-weight: 600; +} + .homepage-subtitle { font-size: $font-size-h3; + line-height: 1.25; + font-weight: 300; + + .wrap-break { + display: inline-block; + } } .navbar-toggle { From 1aa4ab6d8c6bb4ef87aea398e148f88767865537 Mon Sep 17 00:00:00 2001 From: Christopher Neugebauer <_@chrisjrn.com> Date: Sun, 9 Jun 2019 15:08:26 -0700 Subject: [PATCH 25/35] WIP Homepage --- pinaxcon/templates/_footer.html | 2 +- pinaxcon/templates/static_pages/homepage.html | 27 ++++++++--- static/scss/custom.scss | 45 ++++++++++++++++--- 3 files changed, 59 insertions(+), 15 deletions(-) diff --git a/pinaxcon/templates/_footer.html b/pinaxcon/templates/_footer.html index be02d2c..410ca6a 100644 --- a/pinaxcon/templates/_footer.html +++ b/pinaxcon/templates/_footer.html @@ -2,7 +2,7 @@ {% load sponsorship_tags %}
-