qmsk_www/templates/site.html
author Tero Marttila <terom@paivola.fi>
Sun, 14 Sep 2014 02:15:25 +0300
changeset 202 da5de3a97efb
parent 196 669bfd462bca
child 67 c64665b0ff30
permissions -rw-r--r--
pages: Site, footer with modified, basic css styles, page tree types
{% load staticfiles %}
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <title>{% block title %}{% endblock %}</title>

        <!-- Bootstrap -->
        <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
        <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css">

        <!-- qmsk.www.pages -->
        <link rel="stylesheet" href="{% static "pages/pages.css" %}">
    </head>
    <body>
        {% block content %}{% endblock %}

        <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>

        <!-- Include all compiled plugins (below), or include individual files as needed -->
        <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
    </body>
</html>