laboiteproject/lenuage

View on GitHub
laboite/templates/site_base.html

Summary

Maintainability
Test Coverage
{% extends "theme_bootstrap/base.html" %}

{% load staticfiles %}
{% load pinax_webanalytics_tags %}
{% load i18n %}

{% block head_title_base %}{% if SITE_NAME %}{{ SITE_NAME }} ยท {% endif %}{% block head_title %}{% endblock %}{% endblock %}

{% block site_brand %}<a class="navbar-brand" href="{% url "home" %}" style="font-family: 'Kreon', serif; font-size: 150%"><i class="fa fa-cloud" aria-hidden="true"></i> {{ SITE_NAME }}</a>{% endblock %}

{% block styles %}
    {% include "_styles.html" %}
{% endblock %}


{% block extra_head_base %}
    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="{% static 'img/favicon144.png' %}">
    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="{% static 'img/favicon114.png' %}">
    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="{% static 'img/favicon72.png' %}">
    <link rel="apple-touch-icon-precomposed" href="{% static 'img/favicon57.png' %}">
    <link rel="shortcut icon" href="{% static 'img/favicon32.png' %}">
    {% block extra_head %}{% endblock %}
{% endblock %}

{% block footer %}
    {% include "_footer.html" %}
{% endblock %}


{% block scripts %}
    {% include "_scripts.html" %}
{% endblock %}

{% block extra_body_base %}
    {% analytics %}
    {% block extra_body %}{% endblock %}
{% endblock %}