39 lines
1.5 KiB
HTML
39 lines
1.5 KiB
HTML
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href={{ url_for ("static", filename="style.css") }}>
|
|
<link rel="icon" type="image/x-icon" href={{ url_for ("static", filename="stern.ico") }}>
|
|
<script async src="https://analytics.paulmartin.cloud/script.js" data-website-id="e47bae7d-366c-41b8-8ac6-296e4fe30c10"></script>
|
|
<title>DHmTM {{year}}</title>
|
|
<script>
|
|
const wordLists = {{ questions|tojson }};
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<a class="title" href={{url_for("editQuestions")}}>DH meets Top Management {{year}}</a>
|
|
<div class = "perm-questions">
|
|
<h1 class = "erst">Für welchen Bereich sind Sie zuständig?</h1>
|
|
<h1 class = "lower erst">Was wären Perspektiven für DH-Studierende in Ihrem Bereich?</h1>
|
|
</div>
|
|
<div class="scrolling-words-container">
|
|
{% for i in questions %}
|
|
<div class="scrolling-words-box">
|
|
<ul>
|
|
<li> </li>
|
|
{% for e in i %}
|
|
<li> {{e}} </li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
<button id="randomize-button">Zufällige Frage auswählen</button>
|
|
<h3>Paul Martin, {{year}}</h3>
|
|
<script src = {{ url_for ("static", filename="random.js") }}></script>
|
|
</body>
|
|
</html>
|