2017-08-12 23:37:14 +00:00
|
|
|
{% extends "site_base_home.html" %}
|
2015-10-16 17:53:02 +00:00
|
|
|
|
|
|
|
{% load i18n %}
|
2017-08-12 23:37:14 +00:00
|
|
|
{% load staticfiles %}
|
2015-10-16 17:53:02 +00:00
|
|
|
|
2017-08-09 03:59:18 +00:00
|
|
|
{% block head_title %}Welcome{% endblock %}
|
2017-08-09 02:51:38 +00:00
|
|
|
|
2015-10-16 17:53:02 +00:00
|
|
|
{% block body_class %}home{% endblock %}
|
|
|
|
|
|
|
|
{% block body %}
|
2017-08-09 02:51:38 +00:00
|
|
|
|
2017-08-12 23:37:14 +00:00
|
|
|
<div class="jumbotron homepage-block light">
|
|
|
|
|
|
|
|
<div class="homepage-block-bg" style="background-image: url('{% static "images/website-background.svg" %}');"></div>
|
|
|
|
|
|
|
|
<div class="container has-bottom-aligned-div">
|
|
|
|
|
|
|
|
<h1>North Bay Python</h1>
|
|
|
|
<h2>A Python conference north of the Golden Gate</h2>
|
|
|
|
|
|
|
|
<div class="bottom-align col-md-6 col-md-offset-3 text-center">
|
|
|
|
<h3>Petaluma, California</h3>
|
|
|
|
<h4><strong>2017 Conference:</strong> 2 & 3 December</h4>
|
|
|
|
<h4>Talk submissions close 29 September</h4>
|
|
|
|
|
|
|
|
<div class="btn-group">
|
|
|
|
<a class="btn btn-lg btn-primary" href="/dashboard">Submit a proposal</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="jumbotron homepage-block dark">
|
|
|
|
<div class="container">
|
|
|
|
<h1>Downtown Petaluma</h1>
|
|
|
|
<h2>Blah Blah Test</h2>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="jumbotron homepage-block light">
|
|
|
|
|
|
|
|
<div class="homepage-block-bg" style="background-image: url('{% static "images/website-background.svg" %}');"></div>
|
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
<h1>Sponsors</h1>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-10-16 17:53:02 +00:00
|
|
|
{% endblock %}
|