Creando plantilla base con menú #21 #22

Merged
mono merged 3 commits from make_menu_and_base_template_#21 into main 2024-08-17 19:35:24 -05:00
2 changed files with 24 additions and 0 deletions
Showing only changes of commit 980deb61f9 - Show all commits

View File

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<title>Don Confiao - Tienda la Ilusión</title>
</head>
<body>
<div id="menu">
{% include 'don_confiao/menu.html' %}
</div>
<div id="content">
{% block content %} {% endblock %}
</div>
</body>
</html>

View File

@ -0,0 +1,10 @@
<nav>
<ul>
<li><a href='./comprar'>Comprar</a></li>
<li><a href='./compras'>Compras</a></li>
<li><a href='./lista_productos'>Productos</a></li>
<li><a href='./importar_productos'>Importar Productos</a></li>
<li><a href='./cuadrar_tarro'>Cuadrar tarro</a></li>
</ul>
</nav>