Spaces:
Build error
Build error
File size: 1,463 Bytes
ceefdf5 18f3499 ceefdf5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 |
<!DOCTYPE html>
<html>
<head>
<style>
#title {
color: blue;
text-align: center;
margin-bottom: 50px;
}
video, audio {
display: block;
width: 70%;
margin: auto !important;
}
audio {
padding-top: 10px !important;
}
#story-body {
padding-top: 20px;
width: 50%;
margin: auto;
}
#characters {
text-align: center;
display: flex;
width: 40%;
margin: auto;
}
.character {
float: left;
padding-left: 5px;
padding-right: 5px;
}
.character p {
text-align: center;
}
.paragraphs {
text-align: justify;
padding-top: 50px;
}
</style>
</head>
<body>
<h1 id="title">
{{ title }}
</h1>
<div id="characters">
{% for character in characters %}
<div class="character">
<img src="file/{{ character['img'] }}" />
<p>{{ character['name'] }}</p>
</div>
{% endfor %}
</div>
<div></div>
<div id="story-body">
{% for item in items %}
<div>
{% if 'video' in item %}
<video controls>
<source src="file/{{ item['video'] }}" type="video/mp4">
Your browser does not support the video tag.
</video>
{% else %}
{% if 'img' in item %}
<img class="story-img" src="file/{{ item['img'] }}" />
{% endif %}
{% if 'audio' in item %}
<audio controls>
<source src="file/{{ item['audio'] }}" type="audio/wav">
Your browser does not support the audio element.
</audio>
{% endif %}
{% endif %}
<p class="paragraphs">
{{ item['story'] }}
</p>
</div>
{% endfor %}
</div>
</body>
</html> |