Proyecto1/plantillas
This commit is contained in:
parent
ab8b2f3025
commit
e43f274401
23
Proyecto1/Proyecto1/plantillas/base.html
Normal file
23
Proyecto1/Proyecto1/plantillas/base.html
Normal file
@ -0,0 +1,23 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
|
||||
<title>
|
||||
{% block title %} {% endblock %}
|
||||
</title>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<h1 style="background-color:magenta; color:green; text-align:center">Título Común</h1>
|
||||
{% include "superior/barra.html" %}
|
||||
<h3>Otro título com...</h3>
|
||||
|
||||
{% block content %} {% endblock %}}
|
||||
|
||||
<p style="background-color:magenta; color:green; text-align:right">Parrafo común</p>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
12
Proyecto1/Proyecto1/plantillas/childpage1.html
Normal file
12
Proyecto1/Proyecto1/plantillas/childpage1.html
Normal file
@ -0,0 +1,12 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}Página hija 1{% endblock %}
|
||||
|
||||
|
||||
{% block content %}
|
||||
|
||||
<p>Hoy es {{verFecha}}</p>
|
||||
|
||||
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/d1-UX6aR_TM?start=813" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
|
||||
|
||||
{% endblock %}
|
11
Proyecto1/Proyecto1/plantillas/childpage2.html
Normal file
11
Proyecto1/Proyecto1/plantillas/childpage2.html
Normal file
@ -0,0 +1,11 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}Página hija 2{% endblock %}
|
||||
|
||||
|
||||
{% block content %}
|
||||
|
||||
<p>Hoy es {{verFecha}}</p>
|
||||
|
||||
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/4nkchdenw-U" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
|
||||
{% endblock %}
|
32
Proyecto1/Proyecto1/plantillas/miplantilla.html
Normal file
32
Proyecto1/Proyecto1/plantillas/miplantilla.html
Normal file
@ -0,0 +1,32 @@
|
||||
<html>
|
||||
<body>
|
||||
{% include "superior/barra.html" %}
|
||||
<h2 style="color: magenta">
|
||||
Primera plantilla en Django ╮(︶▽︶)╭
|
||||
</h2>
|
||||
{% if nombre_persona == 'Zerafín' %}
|
||||
<p>El nombre coincide</p>
|
||||
{% else %}
|
||||
<p>El nombre no coincide</p>
|
||||
{% endif %}
|
||||
<p>El Nombre de prueba es: <strong>{{nombre_persona.upper}}</strong></p>
|
||||
<p>El Apellido de prueba es: <strong>{{apell_persona.upper}}</strong></p>
|
||||
<p>Día: {{fecha.day}}/{{fecha.month}}/{{fecha.year}}</p>
|
||||
<p><strong>Temas de estudio</strong></p>
|
||||
<p>
|
||||
<ul>
|
||||
{% if temas %}
|
||||
{% for tema in temas %}
|
||||
<li>{{tema|first|lower}}</li>
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
<p>Nada que mostrar</p>
|
||||
{% endif %}
|
||||
</ul>
|
||||
{# COMENTARIO DE UNA LINEA #}
|
||||
{% comment "nota opcional" %}
|
||||
Comentario con nota
|
||||
no visible para web inspector de navegador*
|
||||
{% endcomment %}
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user