Template source: main/bootstrap3.html

<!DOCTYPE html> {% load bootstrap3 %} <html{% if request.LANGUAGE_CODE %} lang="{{ request.LANGUAGE_CODE }}"{% endif %}> <head> <meta charset="utf-8"> <!--[if IE]><meta http-equiv="X-UA-Compatible" content="IE=edge" /><![endif]--> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>{% block bootstrap3_title %}django-bootstrap3 template title{% endblock %}</title> {# {% bootstrap_css %}#} <link href="/static/front/css/bootstrap3.min.css" media="screen" rel="stylesheet"> <link href="/static/front/css/stylish.css?v=0.1" media="screen" rel="stylesheet"> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> <![endif]--> {% if 'javascript_in_head'|bootstrap_setting %}{% bootstrap_javascript jquery=True %}{% endif %} {% block bootstrap3_extra_head %}{% endblock %} </head> <body> {% block bootstrap3_content %}django-bootstrap3 template content{% endblock %} {#{% if not 'javascript_in_head'|bootstrap_setting %}{% bootstrap_javascript jquery=True %}{% endif %}#} {% block bootstrap3_extra_script %}{% endblock %} </body> </html>