Files
@ 5bd29eedc541
Branch filter:
Location: CopyleftConf/copyleftconf-website/pinaxcon/templates/static_pages/homepage.html
5bd29eedc541
5.1 KiB
text/html
Homepage done-ish
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 | {% 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 %}
<div class="homepage-block-bg website-background"></div>
<div class="jumbotron homepage-block dark smaller">
<div class="homepage-block-bg hphbg"></div>
<div class="container homepage-block-content-cloudsep">
<div class="logo large left" style="margin: 20px;">
<div class="circle">
<div class="fill" style="background-image: url('{% static "images/logo.svg" %}');"></div>
</div>
</div>
<h1 class="homepage-title">North Bay<br/>
Python
</h1>
<h2 class="homepage-subtitle">
<span class="wrap-break">A one-track Python conference,</span> <span class="wrap-break">north of the Golden Gate.</span><br/>
<span class="wrap-break">November 2 & 3, 2019.</span>
<span class="wrap-break">Mystic Theatre, Petaluma, California.</span>
</h2>
</div>
<div class="homepage-block-bloop">
<div class="grey-gradient main"></div>
<div class="clouds main"></div>
</div>
</div>
<div class="jumbotron homepage-block dark shallow">
<div class="container homepage-block-footer">
<p class="">
<span class="wrap-break">Talk proposal submissions are now open, until August 8th.</span>
<span class="wrap-break">Submit your proposal now!</span>
</p>
</div>
</div>
<!-- Homepage content begins here -->
<div class="homepage-vertical-space"></div>
<div class="homepage-vertical-space"></div>
<div class="container">
<div class="row">
<div class="col-xs-12">
<h1>One Hour from San Francisco</h1>
<p class="lead">
<span class="wrap-break">Whether you're from Sonoma County,</span>
<span class="wrap-break">from the Bay Area, </span>
<span class="wrap-break">or flying here for the first time,</span>
<span class="wrap-break">North Bay Python in Petaluma is easy to get to.</span>
</p>
</div>
</div>
<div class="row">
<div class="homepage-callout">
<div class="callout-image">
<h3 class="txt">Fly</h3>
<div class="filter"></div>
<div class="bg" style="background-image: url('{% static "images/homepage/snoopy.jpg" %}');"></div>
<p>
Fly into Sonoma County Airport at Santa Rosa, 30 minutes away.
Or, we're an express bus ride away from San Francisco and Oakland
international airports.
</p>
</div>
</div>
<div class="homepage-callout">
<div class="callout-image">
<h3 class="txt">Stay</h3>
<div class="filter"></div>
<div class="bg" style="background-image: url('{% static "images/homepage/snoopy.jpg" %}');"></div>
<p>
Drive 35 miles North of the Golden Gate Bridge, or take transit from
downtown San Francisco, and spend the night.
</p>
</div>
</div>
<div class="homepage-callout">
<div class="callout-image">
<h3 class="txt">Day Trip</h3>
<div class="filter"></div>
<div class="bg" style="background-image: url('{% static "images/homepage/snoopy.jpg" %}');"></div>
<p>Enjoy free all-day parking close to the venue, or take regular buses from San Francisco, Marin County, and Sonoma County</p>
</div>
</div>
</div>
<div class="homepage-vertical-space"></div>
<div class="row">
<div class="col-xs-12">
<h1>Inclusion and Diversity</h1>
<p class="lead">We're a conference for everyone in Northern California, etc
etc etc words words words words words.</p>
</div>
</div>
<div class="row">
<div class="homepage-callout">
<div class="callout-image">
<h3 class="txt">Attendee Safety</h3>
<div class="filter"></div>
<div class="bg" style="background-image: url('{% static "images/homepage/snoopy.jpg" %}');"></div>
<p>We take our code of conduct serioiusly: our staff have taken enforcement training.</p>
</div>
</div>
<div class="homepage-callout">
<div class="callout-image">
<h3 class="txt">Opportunity Grants</h3>
<div class="filter"></div>
<div class="bg" style="background-image: url('{% static "images/homepage/snoopy.jpg" %}');"></div>
<p>If you live out of town, we want to make sure you can attend.</p>
</div>
</div>
<div class="homepage-callout">
<div class="callout-image">
<h3 class="txt">Diversity Targets</h3>
<div class="filter"></div>
<div class="bg" style="background-image: url('{% static "images/homepage/snoopy.jpg" %}');"></div>
<p>We want to look like the Bay Area. We have diversity targets for our speakers and audience.</p>
</div>
</div>
</div>
<div class="homepage-vertical-space"></div>
</div>
{% endblock %}
|