You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
632 B
HTML
26 lines
632 B
HTML
2 years ago
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<title> media archaeology jp multimedia playlist {{ title }}</title>
|
||
|
<link rel="stylesheet" type="text/css" href="static/style.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="container">
|
||
|
<div class ="heading">
|
||
|
<h1 class = "title">media archaeology jp multimedia playlist</h1>
|
||
|
</div>
|
||
|
<div class="gallery">
|
||
|
{% for item in playlist %}
|
||
|
<a class = "{{item.type}}" href="{{ item.link }}">
|
||
|
<img src="img/{{ item.img }}" alt="{{ item.title }}">
|
||
|
</a>
|
||
|
{% endfor %}
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</body>
|
||
|
</html>
|