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
2021-08-26 21:51:26 +03:00

23 lines
763 B
HTML

<!DOCTYPE html>
<html lang="ru">
<head>
<link rel="stylesheet" href="{{ url_for('static', filename='css/pandoc.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/prism.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>
<body>
{{markdown|safe}}
<script>
var divs = document.getElementsByTagName("code");
for (var i = 0; i < divs.length; i++) {
divs[i].classList.add("language-cpp");
}
</script>
<script src="{{ url_for('static', filename='js/prism.js') }}"></script>
</body>
</html>