diff --git a/pinaxcon/templates/_default_sidebar.html b/pinaxcon/templates/_default_sidebar.html index e63831bd5266396bdbcf3e03fe9ae2145cfd930f..203ebaba9e8c6191c5cebfe1c24cfa8d8c427854 100644 --- a/pinaxcon/templates/_default_sidebar.html +++ b/pinaxcon/templates/_default_sidebar.html @@ -4,26 +4,30 @@ {% sponsor_levels as levels %} -

Sponsors

+

Sponsors

- - diff --git a/pinaxcon/templates/_footer.html b/pinaxcon/templates/_footer.html index 3f07653e93a71d7759063c17b91b3e86cb3cc986..c7b549f95f57d3b592de5cb13105567c396069a6 100644 --- a/pinaxcon/templates/_footer.html +++ b/pinaxcon/templates/_footer.html @@ -1,12 +1,12 @@
-
-

North Bay Python is a member project of Software Freedom Conservancy, a 501(c)(3) charity.

+
+

© 2017 North Bay Python. North Bay Python is a member project of Software Freedom Conservancy, a 501(c)(3) charity.

Facebook | Twitter | Lanyrd | Code of Conduct | Terms and Conditions | Colophon

-
- Site powered by Symposion - and Registrasion. +
+ This site is Free and Open Source Software, powered by Symposion + and Registrasion.
diff --git a/pinaxcon/templates/static_pages/homepage.html b/pinaxcon/templates/static_pages/homepage.html index 8496b510411c27a0da0bd47a13bf00b77658ca9d..feae7d855db32e5e4b8f9f6f071462bb58c6391d 100644 --- a/pinaxcon/templates/static_pages/homepage.html +++ b/pinaxcon/templates/static_pages/homepage.html @@ -24,20 +24,21 @@

A Python conference north of the Golden Gate

-

The Mystic Theatre
Petaluma, California

- 2017 conference: 2 & 3 December
- Talk submissions close 29 September + 2017 conference: December 2 & 3
+ Talk submissions close September 29

-
+
+ + @@ -51,17 +52,27 @@

Downtown Petaluma

-

Here is some text about Petaluma and the Mystic Theatre. It's pretty great. The mystic is close to restaurants and hotels. Petaluma is only an hour out of San Francisco. Blah.

+

North Bay Python's home is Petaluma, a shockingly quaint dairy town, nestled on a river at the edge of California's Wine Country.

-
- +

We're hosting the conference at the Mystic Theatre, a 1912-era music hall, right in the middle of Historic Downtown Petaluma. There's countless great places to eat right on our doorstep, craft food and drink producers within walking distance, and plenty of places to stay nearby.

+ +

And it's only an hour's drive out of San Francisco (on a good day).

-
- Image credit: Mystic Theatre, © 2017 Christopher Neugebauer (CC-BY-SA)
+
+ + +
@@ -69,7 +80,41 @@

Sponsors

+ + {% load sponsorship_tags %} + {% load thumbnail %} + + {% sponsor_levels as levels %} + +
+ {% for level in levels %} + {% if level.sponsors %} + {% for sponsor in level.sponsors %} +
+ {% if sponsor.website_logo %} + + {{ sponsor.name }} + + {% else %} + {{ sponsor.name }} + {% endif %} +
+ {% endfor %} + {% endif %} + {% endfor %} +
+ + +
+ + +
@@ -77,20 +122,32 @@
+

Inclusion and Diversity

-

Statement about commitment to inclusion and diversity. Strong code of conduct. Short and long term diversity targets in our call for proposals. Cheap tickets, with an entry fee that we will waive on request. Financial assistance for those who need it.

+

North Bay Python is proud to be founded on a commitment to inclusion and diversity.

+

We value your safety, so we have a strong Code of Conduct and enforcement policy built on the Python Software Foundation's PyCon US policy.

-
- +

We have set diversity targets for our conference program, including short-term and long-term goals for gender balance. We make financial assistance available to speakers.

+ +

We will always have low-cost tickets available, and we will enthusiastically waive ticket costs on request if you need it.

-
- Image credit: DjangoGirls Brisbane 2014, © 2014 Richard Jones (CC-BY)
-
+ + +
{% endblock %} diff --git a/static/scss/custom.scss b/static/scss/custom.scss index 2452fff0d5fbc3d4380766419aff3c09d96d935e..aab9e9cdc556a2d3432c772f3e6ed792fd8b7a40 100644 --- a/static/scss/custom.scss +++ b/static/scss/custom.scss @@ -103,26 +103,26 @@ body.auth .panel-heading .panel-title span.pull-right { box-shadow: 0px 0px 2em $background-filter; //, inset 0px -5px 1em rgba(0, 0, 0, 0.8); } -.homepage-block-content { - position: relative; - height: 100%; -} - -.bottom-align { - position: absolute; - bottom: 0; -} +$homepage-block-min-height: 480px; .homepage-block { margin-top: 0; margin-bottom: 0; - min-height: 480px; // TODO: change - height: 480px; + min-height: $homepage-block-min-height; position: relative; box-shadow: $box-shadow; z-index: 3; } +.homepage-block-content { + min-height: ($homepage-block-min-height - 80px); +} + +/* ??? */ +.homepage-block-footer { + +} + .homepage-block.light { background-color: $background-filter; z-index: 2; @@ -150,6 +150,7 @@ body.auth .panel-heading .panel-title span.pull-right { .homepage-block.dark { background: $gray-base; color: white; + text-shadow: 1px 1px $gray-dark; } .navbar { @@ -173,6 +174,9 @@ body.auth .panel-heading .panel-title span.pull-right { } +.btn-shadow { + box-shadow: 1px 1px 5px $gray-dark; +} .hills { background-size: 100%; @@ -197,4 +201,4 @@ body.auth .panel-heading .panel-title span.pull-right { .btn-group + p { margin-top: 1em; -} \ No newline at end of file +}