mirror of
https://github.com/offen/website.git
synced 2024-11-22 17:10:29 +01:00
20 lines
508 B
HTML
20 lines
508 B
HTML
{% extends "base.html" %}
|
|
|
|
{% set title = page.title %}
|
|
{% set description = page.description %}
|
|
{% set href = page.save_as.replace('index.html', '') %}
|
|
{% set image_url = page.image_url %}
|
|
{% set no_stats = page.no_stats %}
|
|
{% set template = page.template %}
|
|
{% set bottom_cta = page.bottom_cta %}
|
|
|
|
{% block content %}
|
|
<main class="w-100 mt5-ns gray">
|
|
<div class="mw7 center pb5 bg-white">
|
|
<div class="ph3 ph5-ns pt5">
|
|
{{ page.content }}
|
|
</div>
|
|
</div>
|
|
</main>
|
|
{% endblock %}
|