diff --git a/ProyectoWeb/ProyectoWebApp/templates/ProyectoWebApp/blog.html b/ProyectoWeb/ProyectoWebApp/templates/ProyectoWebApp/blog.html index c780f86..1700739 100644 --- a/ProyectoWeb/ProyectoWebApp/templates/ProyectoWebApp/blog.html +++ b/ProyectoWeb/ProyectoWebApp/templates/ProyectoWebApp/blog.html @@ -1,11 +1,10 @@ - - - Blog - - +{% extends 'ProyectoWebApp/base.html' %} + +{% load static %} + +{% block content %} +

Blog

- - - +{% endblock %} diff --git a/ProyectoWeb/ProyectoWebApp/templates/ProyectoWebApp/contacto.html b/ProyectoWeb/ProyectoWebApp/templates/ProyectoWebApp/contacto.html index b07d191..7c51002 100644 --- a/ProyectoWeb/ProyectoWebApp/templates/ProyectoWebApp/contacto.html +++ b/ProyectoWeb/ProyectoWebApp/templates/ProyectoWebApp/contacto.html @@ -1,10 +1,10 @@ - - - Contacto - - +{% extends 'ProyectoWebApp/base.html' %} + +{% load static %} + +{% block content %} +

Contacto

- - +{% endblock %} diff --git a/ProyectoWeb/ProyectoWebApp/templates/ProyectoWebApp/sample.html b/ProyectoWeb/ProyectoWebApp/templates/ProyectoWebApp/sample.html index 15eb31e..e250d15 100644 --- a/ProyectoWeb/ProyectoWebApp/templates/ProyectoWebApp/sample.html +++ b/ProyectoWeb/ProyectoWebApp/templates/ProyectoWebApp/sample.html @@ -1,11 +1,10 @@ - - - Sample - - +{% extends 'ProyectoWebApp/base.html' %} + +{% load static %} + +{% block content %} +

Sample

- - - +{% endblock %} diff --git a/ProyectoWeb/ProyectoWebApp/templates/ProyectoWebApp/servicios.html b/ProyectoWeb/ProyectoWebApp/templates/ProyectoWebApp/servicios.html index 614bb23..e384bc0 100644 --- a/ProyectoWeb/ProyectoWebApp/templates/ProyectoWebApp/servicios.html +++ b/ProyectoWeb/ProyectoWebApp/templates/ProyectoWebApp/servicios.html @@ -1,10 +1,10 @@ - - - Servicios - - +{% extends 'ProyectoWebApp/base.html' %} + +{% load static %} + +{% block content %} +

Servicios

- - +{% endblock %} diff --git a/ProyectoWeb/ProyectoWebApp/templates/ProyectoWebApp/tienda.html b/ProyectoWeb/ProyectoWebApp/templates/ProyectoWebApp/tienda.html index 36d0bd0..53a6a58 100644 --- a/ProyectoWeb/ProyectoWebApp/templates/ProyectoWebApp/tienda.html +++ b/ProyectoWeb/ProyectoWebApp/templates/ProyectoWebApp/tienda.html @@ -1,10 +1,10 @@ - - - Tienda - - +{% extends 'ProyectoWebApp/base.html' %} + +{% load static %} + +{% block content %} +

Tienda

- - +{% endblock %}