0
0
omoscar muΓ±oz
The code begins with a <!DOCTYPE html> declaration which tells the web browser that it should load the static files that are included in the file. Next, the <html> tag is included, followed by the <head> and <meta> tags. The <title> tag is also included.
Shortcut: load
Filename pattern: .html
<!DOCTYPE html>
{% load static %}
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
{% for jug in listado_jugadores%}
{{jug.nombre}}
{% endfor%}
</body>
</html>