kavanland
clone your own copy | download snapshot

Snapshots | iceberg

No images in this repository’s iceberg at this time

Inside this repository

base.html
text/html

Download raw (1.6 KB)

<!DOCTYPE HTML>

<html xmlns="http://www.w3.org/1999/xhtml"
    {% for ns in namespaces %}
    xmlns:{{ ns.name }}="{{ ns.url }}"
    {% endfor %}
    >

<head>
    <meta charset="utf-8"/>
    <title>{% block title %}kavan.land{% endblock %}</title>

    {% block extrahead %}{% endblock %}

    {% block css %}
    <link href='http://fonts.googleapis.com/css?family=Playfair+Display:400,700,900,400italic,700italic,900italic' rel='stylesheet' type='text/css'>
    <link href='http://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic|Tinos:400,700,400italic,700italic|Libre+Baskerville:400,700,400italic' rel='stylesheet' type='text/css'>
    <link rel="stylesheet" href="{{ STATIC_URL }}css/reset.css" media="all"/>
    <link rel="stylesheet" href="{{ STATIC_URL }}less/ak.less" type="text/less" media="all"/>
    {% endblock %}

    <script src="{{ STATIC_URL }}js/less-1.3.0.min.js" type="text/javascript" charset="utf-8"> </script>
</head>

<body id="{% block body_id %}{% endblock %}">
    {% include "aacore/partials/index.html" %}

    {% block body %}{% endblock %}


    <script src="{{ STATIC_URL }}js/jquery-1.11.1.min.js"></script>
    <script src="{{ STATIC_URL }}components/jquery-ui/jquery-ui.min.js"></script>
    <script src="{{ STATIC_URL }}js/jquery.tocify.js/src/javascripts/jquery.tocify.min.js"></script>
    <script src="{{ STATIC_URL }}js/masonry.pkgd.min.js"> </script>
    <script src="{{ STATIC_URL }}js/ak.js"></script>
    <script>
    $(function() {
        $( "#index" ).tabs();
    });
    </script>

    {% block js %}{% endblock %}
</body>
</html>