2017-08-17 17:41:49 +00:00
{% extends "override_bootstrap_theme_base.html" %}
2015-10-16 17:53:02 +00:00
{% load staticfiles %}
{% load metron_tags %}
{% load i18n %}
{% load sitetree %}
{% block styles %}
{% include "_styles.html" %}
{% endblock %}
{% block extra_head_base %}
2017-08-14 01:53:12 +00:00
{% block extra_head %}
2017-08-14 03:54:20 +00:00
< meta property = "twitter:card" content = "summary" >
< meta property = "og:type" content = "website" >
2017-08-14 01:53:12 +00:00
< meta property = "og:title" content = "{% block head_title %}{% endblock %} | {{ SITE_NAME }}" >
2017-08-14 03:58:35 +00:00
< meta property = "twitter:title" content = "{{ SITE_NAME }}" >
2017-08-14 01:53:12 +00:00
< meta property = "og:site_name" content = "North Bay Python" >
2017-08-14 03:05:01 +00:00
< meta property = "og:image" content = "http://{{ request.META.HTTP_HOST }}{% static " images / square_icon . png " % } " >
2017-08-14 01:53:12 +00:00
< meta property = "og:url" content = "{{ request.build_absolute_uri }}" >
2017-08-14 03:05:01 +00:00
< meta property = "og:description" content = "North Bay Python, a community-organized conference, comes to Petaluma, California on December 2 and 3, 2017." >
2017-08-14 03:54:20 +00:00
< meta property = "twitter:description" content = "North Bay Python, a community-organized conference, comes to Petaluma, California on December 2 and 3, 2017." >
2017-08-14 03:47:05 +00:00
< meta name = "description" content = "North Bay Python, a community-organized conference, comes to Petaluma, California on December 2 and 3, 2017." >
< meta name = "google-site-verification" content = "sTU0G4IghY_jV9iPgCVD1WZuk4C_MSWY2QzxQUjDcC4" >
2017-08-14 01:53:12 +00:00
{% endblock %}
2015-10-16 17:53:02 +00:00
{% endblock %}
{% block nav %}
{% sitetree_menu from "main" include "trunk" template "sitetree/menu_bootstrap3.html" %}
{% endblock %}
{% block body_base %}
2017-08-13 01:23:41 +00:00
2017-08-14 01:53:12 +00:00
< div class = "homepage-block-bg website-background" > < / div >
2018-07-01 17:55:57 +00:00
< div class = "clouds hdr" > < / div >
2017-08-13 01:23:41 +00:00
2017-08-13 02:43:28 +00:00
< div id = "background-filter" >
2015-10-16 17:53:02 +00:00
< section id = "content_body" >
< div class = "container" >
{% include "_messages.html" %}
< div class = "row" >
< div class = "col-md-9" >
{% block body %}
{% endblock %}
< / div >
< div class = "col-md-3" >
{% block sidebar %}
{% include "_default_sidebar.html" %}
{% endblock %}
< / div >
< / div >
< / div >
< / section >
{% endblock %}
2017-08-13 02:11:38 +00:00
{% block footer_base %}
2018-07-01 17:55:57 +00:00
< div class = "clouds ftr" > < / div >
< div class = "ftr-wrapper" >
< div class = "container" >
2017-08-13 02:11:38 +00:00
< footer >
{% block footer %}
{% include "_footer.html" %}
{% endblock %}
< / footer >
< / div >
2018-07-01 17:55:57 +00:00
< / div >
2015-10-16 17:53:02 +00:00
{% endblock %}
{% block scripts %}
{% include "_scripts.html" %}
2017-10-30 00:15:52 +00:00
2017-10-30 00:17:56 +00:00
{% block extra_script %}
2017-10-30 00:15:52 +00:00
{% endblock %}
2015-10-16 17:53:02 +00:00
{% endblock %}
{% block extra_body_base %}
{% analytics %}
{% block extra_body %}{% endblock %}
{% endblock %}