07ea4f1ca2
There's nothing wrong about them. Let's just recover and tweak them instead of a rewrite.
17 lines
374 B
HTML
17 lines
374 B
HTML
{% extends "layout.html" %}
|
|
{% load static %}
|
|
|
|
{% block content %}
|
|
<div class="page">
|
|
|
|
<h1> Homepage </h1>
|
|
<h2> UNDER MAINTENANCE </h2>
|
|
<h2> Welcome to my website </h2>
|
|
<h3> Marcel Plch </h3> <img src="{% static "base_app/img/me.jpg" %}" width="125" />
|
|
<p>
|
|
Let's turn this into something useful,
|
|
shall we.
|
|
</p>
|
|
</div>
|
|
{% endblock %}
|
|
|