mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
34 lines
791 B
HTML
34 lines
791 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<title>gunicorn django example app</title>
|
|
<!--[if IE]>
|
|
|
|
<script>
|
|
// allow IE to recognize HTMl5 elements
|
|
document.createElement('section');
|
|
document.createElement('article');
|
|
document.createElement('aside');
|
|
document.createElement('footer');
|
|
document.createElement('header');
|
|
document.createElement('nav');
|
|
document.createElement('time');
|
|
|
|
</script>
|
|
<![endif]-->
|
|
|
|
</head>
|
|
<body>
|
|
<header id="top">
|
|
<h1>test app</h1>
|
|
</header>
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
|
|
|
|
<footer></footer>
|
|
</body>
|
|
</html>
|