1
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
wagtail-website-2018-spike/templates/home/home_page.html

13 lines
396 B
HTML
Raw Normal View History

2018-07-24 20:56:38 +01:00
{% extends "base.html" %}
2018-07-25 08:36:16 +01:00
{% load static %}
2018-07-24 20:56:38 +01:00
{% block content %}
2018-07-25 08:36:16 +01:00
<header id="index-header" class="d-flex align-items-center image" data-image="{% static 'img/header.jpg' %}">
<div class="text-center m-auto text-light">
<h1 class="display-1">{{ settings.WAGTAIL_SITE_NAME|title }}</h1>
2018-07-25 08:43:01 +01:00
<h2 class="lead">{{ self.body }}</h2>
2018-07-25 08:36:16 +01:00
</div>
</header>
2018-07-24 20:56:38 +01:00
{% endblock %}