You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
598 B
23 lines
598 B
9 months ago
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>My Wiki</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Welcome to My Wiki</h1>
|
||
|
<ul>
|
||
|
{% for page_title, page_info in pages.items() %}
|
||
|
<li>
|
||
|
<h2>{{ page_title }}</h2>
|
||
|
<div>{{ page_info.content|safe }}</div>
|
||
|
{% if page_info.images %}
|
||
|
{% for image_url in page_info.images %}
|
||
|
<li><img src="{{ image_url }}" alt="Image"></li>
|
||
|
{% endfor %}
|
||
|
{% endif %}
|
||
|
</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
</body>
|
||
|
</html>
|