Adding content to <title>. Fix #62

This commit is contained in:
Víðir Valberg Guðmundsson 2016-07-05 18:46:32 +02:00
parent add35068af
commit fe0bc14ac1
12 changed files with 45 additions and 1 deletions

View file

@ -7,7 +7,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Bornhack</title>
<title>{% block title %}BornHack{% endblock %}</title>
<!-- Bootstrap core CSS -->
<link href="{% static 'css/bootstrap.min.css' %}" rel="stylesheet">

View file

@ -1,5 +1,9 @@
{% extends 'base.html' %}
{% block title %}
Code of Conduct | {{ block.super }}
{% endblock %}
{% block content %}
<h2>Code of Conduct</h2>

View file

@ -1,5 +1,9 @@
{% extends 'base.html' %}
{% block title %}
Contact | {{ block.super }}
{% endblock %}
{% block content %}
<p class="lead">

View file

@ -1,6 +1,10 @@
{% extends 'base.html' %}
{% load static from staticfiles %}
{% block title %}
Info | {{ block.super }}
{% endblock %}
{% block extra_head %}
<link rel="stylesheet" href="{% static 'css/leaflet.css' %}" />
{% endblock %}

View file

@ -1,5 +1,9 @@
{% extends 'base.html' %}
{% block title %}
General Terms and Conditions | {{ block.super }}
{% endblock %}
{% block content %}
<h2>Terms and Conditions for BornHack IvS sale and delivery of (i) merchandise (ii) tickets and/or (iii) accommodation</h2>

View file

@ -1,5 +1,9 @@
{% extends 'base.html' %}
{% block title %}
Privacy Policy | {{ block.super }}
{% endblock %}
{% block content %}
<h2>Privacy and cookie policy</h2>

View file

@ -1,5 +1,9 @@
{% extends 'base.html' %}
{% block title %}
Call for Speakers | {{ block.super }}
{% endblock %}
{% block content %}
<h2>BornHack 2016: Call for Speakers</h2>

View file

@ -1,5 +1,9 @@
{% extends 'base.html' %}
{% block title %}
Call for Sponsors | {{ block.super }}
{% endblock %}
{% block content %}
<h2>Sponsoring</h2>

View file

@ -1,6 +1,10 @@
{% extends 'base.html' %}
{% load commonmark %}
{% block title %}
{{ news_item.title }} | {{ block.super }}
{% endblock %}
{% block content %}
<div>
{% if not_public %}

View file

@ -1,6 +1,10 @@
{% extends 'base.html' %}
{% load commonmark %}
{% block title %}
News | {{ block.super }}
{% endblock %}
{% block content %}
{% for item in news_items %}
<div>

View file

@ -3,6 +3,10 @@
{% load commonmark %}
{% load shop_tags %}
{% block title %}
{{ product.name }} | {{ block.super }}
{% endblock %}
{% block shop_content %}
<div class="row">

View file

@ -2,6 +2,10 @@
{% load bootstrap3 %}
{% load shop_tags %}
{% block title %}
Shop | {{ block.super }}
{% endblock %}
{% block shop_content %}
<div class="row">