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/basic_template.html

21 lines
585 B
HTML
Raw Normal View History

2021-08-26 21:51:26 +03:00
<!DOCTYPE html>
<html lang="ru">
<head>
2021-09-21 23:09:10 +03:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2021-08-26 21:51:26 +03:00
<link rel="stylesheet" href="{{ url_for('static', filename='css/pandoc.css') }}">
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
</head>
2022-07-15 14:07:23 +03:00
2021-08-26 21:51:26 +03:00
<body>
2022-07-15 14:07:23 +03:00
<div class="pagehead">
</div>
<div class="pagebody">
{{markdown|safe}}
</div>
2021-08-26 21:51:26 +03:00
</body>
</html>