You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
{% load static %}
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
<html>
|
|
|
<head>
|
|
|
<title>Biblioteca</title>
|
|
|
<link rel="stylesheet" type="text/css" href="{% static 'hello/styles.css' %}">
|
|
|
</head>
|
|
|
<body>
|
|
|
<header>
|
|
|
<nav>
|
|
|
<ul>
|
|
|
<li><a href="{% url 'home' %}">Inicio</a></li>
|
|
|
<!-- Otros enlaces de navegación -->
|
|
|
</ul>
|
|
|
</nav>
|
|
|
</header>
|
|
|
<h1>¡Hola, mundo!</h1>
|
|
|
<p>Bienvenido a mi primera aplicación Django con plantillas.</p>
|
|
|
</body>
|
|
|
</html>
|