36 lines
1.0 KiB
HTML
36 lines
1.0 KiB
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=Montserrat:300,400,500,800" rel="stylesheet">
|
|
<link href="https://use.typekit.net/tck7ptw.css" 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>
|