jinja2 master template for web page
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="zh-CN"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta name="apple-mobile-web-app-capable" content="yes" /> | |
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/> | |
<meta name="apple-touch-fullscreen" content="yes" /> | |
<meta name="format-detection" content="telephone=no"/> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>{% block title %}{% endblock %}</title> | |
{% block head %} | |
{% endblock %} | |
</head> | |
<body class="{% if request.environ['is_mobile'] %}mobile-device{%endif%}"> | |
{% block header %} | |
{% endblock %} | |
{% block content %} | |
{% endblock %} | |
{% block footer %} | |
{% endblock %} | |
{% block bottom %} | |
{% endblock %} | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment