This repository has been archived on 2023-01-27. You can view files and clone it, but cannot push or open issues or pull requests.
flask-wikipages/app/templates/index.html

14 lines
299 B
HTML

<!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>