Add layout template

This commit is contained in:
Andros Fenollosa
2023-07-21 10:32:25 +02:00
parent 516483c865
commit 9248f94f28
3 changed files with 140 additions and 1 deletions

15
templates/pages/home.html Normal file
View File

@ -0,0 +1,15 @@
{% extends "layouts/base.html" %}
{% load static %}
{% block title %}Titulo{% endblock %}
{% block description %}Titulo{% endblock %}
{% block og-title %}Title{% endblock %}
{% block og-image %}{% static 'images/hi.jpg' %}{% endblock %}
{% block content %}
<h1>Hi</h1>
{% endblock %}