78 lines
		
	
	
	
		
			2.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			78 lines
		
	
	
	
		
			2.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "override_bootstrap_theme_base.html" %}
 | |
| 
 | |
| {% load staticfiles %}
 | |
| {% load metron_tags %}
 | |
| {% load i18n %}
 | |
| {% load sitetree %}
 | |
| 
 | |
| {% block styles %}
 | |
|     {% include "_styles.html" %}
 | |
| {% endblock %}
 | |
| 
 | |
| {% block extra_head_base %}
 | |
|     {% block extra_head %}
 | |
|       <meta property="twitter:card" content="summary">
 | |
|       <meta property="og:type" content="website">
 | |
|       <meta property="og:title" content="{% block head_title %}{% endblock %} | {{ SITE_NAME }}">
 | |
|       <meta property="twitter:title" content="{{ SITE_NAME }}">
 | |
|       <meta property="og:site_name" content="North Bay Python">
 | |
|       <meta property="og:image" content="http://{{ request.META.HTTP_HOST }}{% static "images/square_icon.png" %}">
 | |
|       <meta property="og:url" content="{{ request.build_absolute_uri }}">
 | |
|       <meta property="og:description" content="North Bay Python, a community-organized conference, comes to Petaluma, California on December 2 and 3, 2017.">
 | |
|       <meta property="twitter:description" content="North Bay Python, a community-organized conference, comes to Petaluma, California on December 2 and 3, 2017.">
 | |
|       <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">
 | |
|     {% endblock %}
 | |
| {% endblock %}
 | |
| 
 | |
| {% block nav %}
 | |
|     {% sitetree_menu from "main" include "trunk" template "sitetree/menu_bootstrap3.html" %}
 | |
| {% endblock %}
 | |
| 
 | |
| {% block body_base %}
 | |
| 
 | |
|   <div class="homepage-block-bg website-background"></div>
 | |
| 
 | |
|   <div id="background-filter">
 | |
|     <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 %}
 | |
| 
 | |
| 
 | |
| {% block footer_base %}
 | |
|   <div class="container">
 | |
|     <footer>
 | |
|       {% block footer %}
 | |
|           {% include "_footer.html" %}
 | |
|       {% endblock %}
 | |
|     </footer>
 | |
|   </div>
 | |
| {% endblock %}
 | |
| 
 | |
| 
 | |
| {% block scripts %}
 | |
|     {% include "_scripts.html" %}
 | |
| 
 | |
|     {% block extra_script %}
 | |
|     {% endblock %}
 | |
| 
 | |
| {% endblock %}
 | |
| 
 | |
| {% block extra_body_base %}
 | |
|     {% analytics %}
 | |
|     {% block extra_body %}{% endblock %}
 | |
| {% endblock %}
 | 
