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.
20 lines
722 B
HTML
20 lines
722 B
HTML
1 year ago
|
<html>
|
||
|
<head>
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<link rel="stylesheet" href="./static/style.css" />
|
||
|
</head>
|
||
|
<body>
|
||
|
<a href="/breadcube/gesture/" ><h1 class="button">{{word}} <span class="close">x</span></h1></a>
|
||
|
{% for file in wordmedia %}
|
||
|
<div class="two-col">
|
||
|
<!-- <h2>Video {{file}}</h2> -->
|
||
|
<!-- This file path might need to change -->
|
||
|
<img src="{{path}}/{{file}}" />
|
||
|
{% for tag in media[file]
|
||
|
%}<a href="{{tag}}"><button id="{{ loop.index - 1 }}" class="button">{{tag}}</button></a>{%
|
||
|
endfor %}
|
||
|
</div>
|
||
|
{% endfor %}
|
||
|
</body>
|
||
|
</html>
|