install baker-street_gulp-scss 0.0.8

This commit is contained in:
2018-03-15 11:21:12 +00:00
parent 7feaf7b129
commit acc2f753fa
37 changed files with 11264 additions and 5 deletions

View File

View File

@@ -0,0 +1,6 @@
{% extends 'main.html' %}
{% load i18n %}
{% block content %}
<h1>Error 404</h1>
{% endblock %}

View File

@@ -0,0 +1,6 @@
{% extends 'main.html' %}
{% load i18n %}
{% block content %}
<h1>Error 500</h1>
{% endblock %}

View File

@@ -0,0 +1,33 @@
{% load static i18n cms_tags sekizai_tags %}<!DOCTYPE html>
<html lang="{{ LANGUAGE_CODE }}">
<head>
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<title>{% block title %}{% page_attribute page_title %}{% endblock %}</title>
<meta name="description" content="{% block description %}{% page_attribute 'meta_description' %}{% endblock %}">
<meta name="viewport" content="width=device-width, initial-scale=1">
{% block extra_meta %}
{% endblock %}
<link rel="stylesheet" href="{% static 'css/main.css' %}">
{% render_block "css" %}
{{ ALDRYN_SNAKE.render_head }}
</head>
<body>
{% cms_toolbar %}
{% block content %}
{% placeholder 'content' %}
{% endblock %}
<script type="text/javascript" src="{% static 'js/lib.js' %}"></script>
<script type="text/javascript" src="{% static 'js/main.js' %}"></script>
{% block extra_body %}{% endblock %}
{% render_block "js" %}
{{ ALDRYN_SNAKE.render_tail }}
</body>
</html>

View File

@@ -0,0 +1,5 @@
{% extends 'main.html' %}
{% load i18n %}
{% block content %}
{% endblock %}