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>
<head>
<title>Blog</title>
</head>
<body>
{% extends 'ProyectoWebApp/base.html' %}
{% load static %}
{% block content %}
<h1>Blog</h1>
</body>
</html>
{% endblock %}

View File

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

View File

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

View File

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

View File

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