Changeset - b7de2f57a50b
[Not reviewed]
0 1 0
Brett Smith - 4 years ago 2019-09-30 15:56:08
brettcsmith@brettcsmith.org
templates: Correct og:image URL.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/site_base.html
Show inline comments
 
{% extends "override_bootstrap_theme_base.html" %}
 

	
 
{% load staticfiles %}
 
{% 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="{{ SITE_NAME }}">
 
      <meta property="og:image" content="https://{{ request.META.HTTP_HOST }}{% static "images/square_icon.png" %}">
 
      <meta property="og:image" content="https://{{ request.META.HTTP_HOST }}{% static "images/logo.png" %}">
 
      <meta property="og:url" content="{{ request.build_absolute_uri }}">
 
      <meta property="og:description" content="CopyleftConf will provide a friendly and safe place for discussion of all aspects of copyleft, including as a key strategy for defending software freedom in Brussels on February 3.">
 
      <meta property="twitter:description" content="CopyleftConf will provide a friendly and safe place for discussion of all aspects of copyleft, including as a key strategy for defending software freedom in Brussels on February 3.">
 
      <meta name="description" content="CopyleftConf will provide a friendly and safe place for discussion of all aspects of copyleft, including as a key strategy for defending software freedom in Brussels on February 3.">
 
    {% endblock %}
 
{% endblock %}
 

	
 
{% block nav %}
 
    {% sitetree_menu from "main" include "trunk" template "sitetree/menu_bootstrap3.html" %}
 
{% endblock %}
 

	
 
{% block body_base %}
 

	
 
  <div class="homepage-background-opacity website-background"></div>
 
  <div class="clouds hdr"></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="clouds ftr"></div>
 

	
 
<div class="ftr-wrapper">
 
  <div class="container" >
 
    <footer>
 
      {% block footer %}
 
          {% include "_footer.html" %}
 
      {% endblock %}
 
    </footer>
 
  </div>
 
</div>
0 comments (0 inline, 0 general)