Added page model, beautified code, created index page(finally)

This commit is contained in:
2022-07-15 16:18:12 +03:00
parent 98a8fbdc0c
commit f46fd4bf72
6 changed files with 325 additions and 286 deletions

View File

@@ -1 +1,13 @@
Wiki index page
<!DOCTYPE html>
<html lang="ru">
<head>
</head>
<body>
Статьи:
{% for page in pages %}
<br>
<a href="/{{PANDOC_LINK}}/{{page.name}}">{{page.title}}</a>(Авторы: {{', '.join(page.credits)}})
{% endfor %}
</body>
</html>