ws-begerad-11ty/src/_includes/layouts/home.html

19 lines
486 B
HTML

<!--
SPDX-FileCopyrightText: 2021 Software Ingenieur Begerad <swingbe.de>
SPDX-License-Identifier: GPL-3.0-or-later
-->
<!--tell this template to extend another one-->
{% extends "layouts/base.html" %}
<!-- implement block from extended layouts if you do not want to see any placeholders-->
{% block content %}
{{ content | safe }}
<!--add call to action-->
<!--Do you need an extra cta per-instance?-->
{% set ctaContent = cta %}
{% include "partials/cta.html" %}
{% endblock %}