File diff c6314ae230da → 1886323d7431
pinaxcon/templates/site_base.html
Show inline comments
 
modified file chmod 100755 => 100644
 
<!-- site_base.html -->
 
{% load staticfiles %}
 
{% load metron_tags %}
 
{% load i18n %}
...
 
@@ -11,14 +10,12 @@
 
    <meta charset="utf-8">
 
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
 
    <meta name="description" content="">
 
    <meta name="viewport" content="width=device-width, initial-scale=1">
 

	
 
    <title>{% block head_title_base %}{% if SITE_NAME %}{{ SITE_NAME }} | {% endif %}{% block head_title %}{% endblock %}{% endblock %}</title>
 

	
 
    {% block styles %}
 
      <link href="{% static 'pyconau2017/css/bootstrap.css' %}" rel="stylesheet">
 
      <!--<link rel="stylesheet" href="{% static 'pyconau2017/css/app.css' %}">
 
      <link rel="stylesheet" href="{% static 'pyconau2017/css/print.css' %}" media="print">
 
      <link href="{% static 'pyconau2017/css/pyconau.css' %}" rel="stylesheet">-->
 

	
 
      <link rel="icon" href="{% static 'pyconau2017/images/favicon.png' %}">
 
    {% block extra_style %}{% endblock %}
...
 
@@ -32,12 +29,11 @@
 
    <div class="container">
 
      {% sitetree_menu from "main" include "trunk" template "sitetree_header.html" %}
 

	
 

	
 
    <!-- site_base block body_base -->
 
      <div class="well">
 
        <h1>{% block header_title %}{% endblock %}</h1>
 
        <p>{% block header_paragraph %}{% endblock %}</p>
 
      </div>
 
      {% block body_base %}
 
      <!--div style="height: 100px;" /-->
 
        <!--main role="main"-->
 
        <!-- site_base block body -->
 
        {% block body %}
 
          <div class="container">
 
            <div class="row">
...
 
@@ -52,17 +48,11 @@
 
              </div>
 
            </div>
 
          {% endblock %}
 
        <!-- site_base endblock body -->
 
        <!--/main-->
 
      <!--/div-->
 
        {% endblock %}
 
    <!-- site_base endblock body_base -->
 

	
 
        {% block footer_base %}
 
      <!-- footer class="l-footer l-footer__alt" -->
 
          {% block footer %}
 
          {% endblock %}
 
      <!-- /footer -->
 
        {% endblock %}
 

	
 
        {% block scripts %}
...
 
@@ -83,4 +73,3 @@
 
    </div>
 
  </body>
 
</html>
 
<!-- end site_base.html -->