18 lines
No EOL
376 B
HTML
18 lines
No EOL
376 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Lista de Artículos</title>
|
|
<link rel="stylesheet" href="/static/styles.css">
|
|
</head>
|
|
<body>
|
|
<h1>Lista de Artículos</h1>
|
|
<ul>
|
|
{% for item in items %}
|
|
<li>
|
|
<a href="/items/{{ item.ID }}">{{ item.Title }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</body>
|
|
</html> |