first page
This commit is contained in:
parent
ff6a6cdc4a
commit
3c922f3772
3 changed files with 19 additions and 4 deletions
6
configs/scss.ini
Normal file
6
configs/scss.ini
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
source_dir = assets/scss/
|
||||||
|
output_dir = assets/css/
|
||||||
|
output_style = compressed
|
||||||
|
source_comments = false
|
||||||
|
precision = 5
|
||||||
|
name_prefix = .min
|
7
content/contents.lr
Normal file
7
content/contents.lr
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
title: Winkekatze TV
|
||||||
|
---
|
||||||
|
_model: start
|
||||||
|
---
|
||||||
|
body: Hello World
|
||||||
|
---
|
||||||
|
image: /images/winkekatze.svg
|
|
@ -1,6 +1,8 @@
|
||||||
{% extends "layout.html" %}
|
{%- extends "layout.html" -%}
|
||||||
{% block title %}{{ this.title }}{% endblock %}
|
{%- block title -%}
|
||||||
{% block body %}
|
{{- this.title -}}
|
||||||
|
{%- endblock -%}
|
||||||
|
{%- block body -%}
|
||||||
<h2>{{ this.title }}</h2>
|
<h2>{{ this.title }}</h2>
|
||||||
{{ this.body }}
|
{{ this.body }}
|
||||||
{% endblock %}
|
{%- endblock -%}
|
||||||
|
|
Loading…
Reference in a new issue