From 4e306c6aca4b442bb480a31c37127ed4bcba32f7 Mon Sep 17 00:00:00 2001 From: "jp.dev" Date: Sat, 21 Nov 2020 01:22:44 -0300 Subject: [PATCH] fin vid38 --- 7d_Proyecto_Web_Completo.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 7d_Proyecto_Web_Completo.md diff --git a/7d_Proyecto_Web_Completo.md b/7d_Proyecto_Web_Completo.md new file mode 100644 index 0000000..871d3c4 --- /dev/null +++ b/7d_Proyecto_Web_Completo.md @@ -0,0 +1,37 @@ +## Aplicar estilo a Servicios + +- Utlizar parte el código de home.html como base de estilo. +- Reemplazar el contenido a mostrar, con los servicios. + ` {{servicio.titulo}} ` y ` {{servicio.contenido}} ` +- Cambiar las rutas de los `src="..."` + +**servicios.html** +``` +{% extends 'ProyectoWebApp/base.html' %} + +{% load static %} + +{% block content %} + + {% for servicio in servicios %} + + +
+
+
+ +
+

+ {{servicio.titulo}} + {{servicio.contenido}} +

+
+
+
+
+ + {% endfor %} + +{% endblock %} +``` +