skillbox/server/core/templates/base.html

34 lines
975 B
HTML

{% load static from staticfiles %}
{% load compress %}
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>{% block title %}skillBox{% endblock %}</title>
<meta name="description" content="">
<meta name="author" content="skillBox">
<link href='https://fonts.googleapis.com/css?family=Material+Icons' rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Arimo" rel="stylesheet">
{% compress css %}
<link href="{% static "styles/main.scss" %}" rel="stylesheet" type="text/x-scss"
media="all"/>
{% endcompress %}
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
</head>
<body class="{% block body_class %}{% endblock %}">
<div class="container">
{% block body %}
{% endblock %}
</div>
</body>
</html>