install baker-street_gulp-scss 0.0.8
This commit is contained in:
0
src/project/templates/.aldryn-folder
Normal file
0
src/project/templates/.aldryn-folder
Normal file
6
src/project/templates/404.html
Normal file
6
src/project/templates/404.html
Normal file
@@ -0,0 +1,6 @@
|
||||
{% extends 'main.html' %}
|
||||
{% load i18n %}
|
||||
|
||||
{% block content %}
|
||||
<h1>Error 404</h1>
|
||||
{% endblock %}
|
||||
6
src/project/templates/500.html
Normal file
6
src/project/templates/500.html
Normal file
@@ -0,0 +1,6 @@
|
||||
{% extends 'main.html' %}
|
||||
{% load i18n %}
|
||||
|
||||
{% block content %}
|
||||
<h1>Error 500</h1>
|
||||
{% endblock %}
|
||||
33
src/project/templates/main.html
Normal file
33
src/project/templates/main.html
Normal 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>
|
||||
0
src/project/templates/project/.aldryn-folder
Normal file
0
src/project/templates/project/.aldryn-folder
Normal file
5
src/project/templates/project/content.html
Normal file
5
src/project/templates/project/content.html
Normal file
@@ -0,0 +1,5 @@
|
||||
{% extends 'main.html' %}
|
||||
{% load i18n %}
|
||||
|
||||
{% block content %}
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user