first page

This commit is contained in:
L3D 2022-01-09 19:49:01 +01:00
parent ff6a6cdc4a
commit 3c922f3772
Signed by: l3d
GPG key ID: CD08445BFF4313D1
3 changed files with 19 additions and 4 deletions

6
configs/scss.ini Normal file
View 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
View file

@ -0,0 +1,7 @@
title: Winkekatze TV
---
_model: start
---
body: Hello World
---
image: /images/winkekatze.svg

View file

@ -1,6 +1,8 @@
{% extends "layout.html" %}
{% block title %}{{ this.title }}{% endblock %}
{% block body %}
{%- extends "layout.html" -%}
{%- block title -%}
{{- this.title -}}
{%- endblock -%}
{%- block body -%}
<h2>{{ this.title }}</h2>
{{ this.body }}
{% endblock %}
{%- endblock -%}