vcp-elearning/tkupek_elearning/elearning/templates/index.html

34 lines
678 B
HTML
Raw Normal View History

2016-01-20 23:55:56 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="css/style.css">
<link href="images/favicon.ico" rel="shortcut icon">
<title>VCP Bayern - eLearning</title>
</head>
<body>
<div class="container">
2016-01-31 18:19:45 +01:00
<h1>{{ settings.title }}</h1>
<p>{{ settings.message }}</p>
<hr/>
<br/>
2016-01-31 16:17:37 +01:00
{% for question in questions %}
<h2>{{ question.id }}: {{ question.title }}</h2>
<p>{{ question.text }}</p>
<p style="font-style:italic">{{ question.options }} : {{ question.answer }}</p>
<p>{{ question.explanation}}</p>
{% endfor %}
2016-01-31 18:19:45 +01:00
<br/>
<hr/>
{{ settings.footer }}
2016-01-20 23:55:56 +01:00
</div>
</body>
</html>