From e2753077f4d2c09653d20965feff2b7e30cf4524 Mon Sep 17 00:00:00 2001 From: "jp.av.dev" Date: Fri, 2 Jul 2021 22:21:43 -0400 Subject: [PATCH] Update '7b_Proyecto_Web_Completo' --- 7b_Proyecto_Web_Completo.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/7b_Proyecto_Web_Completo.md b/7b_Proyecto_Web_Completo.md index f68b2e1..7581e78 100644 --- a/7b_Proyecto_Web_Completo.md +++ b/7b_Proyecto_Web_Completo.md @@ -23,7 +23,7 @@ Compatible con todos los navegadores. [demo](https://www.pildorasinformaticas.es/archivos/django/video29.zip) /Proyecto/App/**estatic/App/** -``` +```sh ├── 📂️ static │ └── 📂️ ProyectoWepApp │ ├── 📂️ css @@ -45,11 +45,11 @@ modificar Project/App/templates/App/**home.html** ### TAG `{% load static %}` Cargar contenidos -`{% load static %}` y -**agregar `` +`{% load static %}` y **agregar +`` *base.html* -``` +```html {% load static %} @@ -82,7 +82,7 @@ Estilo aplicado, ***vista escritorio*** - [Herencia de Plantillas](https://gitea.kickto.net/jp.av.dev/intro_Django/wiki/1_DjangoTemplates#user-content-herencia-de-plantillas) Project/App/templatesApp/**base.html** *(copia de home.html)* -``` +```html Eliminar lo que será contenido dinámico @@ -91,7 +91,7 @@ Project/App/templatesApp/**base.html** *(copia de home.html)* ``` En el resto de plantillas eliminar el contenido estatico. e indicar **herencia** de **base.html** -``` +```html {% extends 'ProyectoWebApp/base.html' %} {% load static %} @@ -110,7 +110,7 @@ e indicar **herencia** de **base.html** ### Barra de navegacion, destacar sitio en visita **base.html** `{% if request.path == '/' %}active{% endif %}` -``` +```html ...