herencia otros

This commit is contained in:
jp.av.dev 2020-11-17 03:36:14 -03:00
parent c90bd61bd1
commit 174cb97082
5 changed files with 35 additions and 37 deletions

View File

@ -1,11 +1,10 @@
<html> {% extends 'ProyectoWebApp/base.html' %}
<head>
<title>Blog</title> {% load static %}
</head>
<body> {% block content %}
<h1>Blog</h1> <h1>Blog</h1>
</body>
</html>
{% endblock %}

View File

@ -1,10 +1,10 @@
<html> {% extends 'ProyectoWebApp/base.html' %}
<head>
<title>Contacto</title> {% load static %}
</head>
<body> {% block content %}
<h1>Contacto</h1> <h1>Contacto</h1>
</body> {% endblock %}
</html>

View File

@ -1,11 +1,10 @@
<html> {% extends 'ProyectoWebApp/base.html' %}
<head>
<title>Sample</title> {% load static %}
</head>
<body> {% block content %}
<h1>Sample</h1> <h1>Sample</h1>
</body> {% endblock %}
</html>

View File

@ -1,10 +1,10 @@
<html> {% extends 'ProyectoWebApp/base.html' %}
<head>
<title>Servicios</title> {% load static %}
</head>
<body> {% block content %}
<h1>Servicios</h1> <h1>Servicios</h1>
</body> {% endblock %}
</html>

View File

@ -1,10 +1,10 @@
<html> {% extends 'ProyectoWebApp/base.html' %}
<head>
<title>Tienda</title> {% load static %}
</head>
<body> {% block content %}
<h1>Tienda</h1> <h1>Tienda</h1>
</body> {% endblock %}
</html>