pythonlang2/templates/index.html

19 lines
588 B
HTML

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="index.css" />
<meta charset="utf-8" />
<title>This is Python</title>
<link rel="icon" type="image/x-icon" href="https://www.python.org/static/favicon.ico">
</head>
<body>
<h1 id="python-logo"><img src="https://python.org/static/img/python-logo.png" alt="python™"></h1>
<h1 id="main_header">{{ section.title | safe }}</h1>
<br />
<hr class="sep" />
<div id="content">
{{ section.content | safe }}
</div>
</body>
</html>