25 lines
810 B
Plaintext
25 lines
810 B
Plaintext
|
{% extends "templates/article.njk" %}
|
||
|
{% import "components/toc.njk" as toc with context %}
|
||
|
|
||
|
{% block head %}
|
||
|
<title>qwik cms - docs - main</title>
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block header %}
|
||
|
qwik cms - docs
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block main %}
|
||
|
{{ toc.header("h1", "Basic idea") }}
|
||
|
<p>
|
||
|
Our CMS can be used in multiple (different) ways thanks to the underlying technologies.
|
||
|
The basic idea is that every page is a file. Although how you treat that file is really
|
||
|
up to you. It can be plain HTML, nunjucks/njk (a templating language for HTML) or even
|
||
|
markdown (although not "plain markdown").
|
||
|
</p>
|
||
|
{{ toc.header("h2", "Views on bloat") }}
|
||
|
<p>
|
||
|
I do not want to bloat this CMS, but I must admit that it is bloated.
|
||
|
{{ hello }}
|
||
|
</p>
|
||
|
{% endblock %}
|