source: templates/album_list.html@ d7662b5

Last change on this file since d7662b5 was d7662b5, checked in by ManuelTrajcev <manueltrajcev7@…>, 5 weeks ago

init

  • Property mode set to 100644
File size: 271 bytes
Line 
1<!DOCTYPE html>
2<html>
3<head>
4 <title>All Albums</title>
5</head>
6<body>
7 <h1>{{ heading }}</h1>
8 <ul>
9 {% for d in data %}
10 <li>{{ d }}</li>
11 {% empty %}
12 <li>No data found.</li>
13 {% endfor %}
14 </ul>
15</body>
16</html>
Note: See TracBrowser for help on using the repository browser.