diff options
author | sudan <sudan@douban.com> | 2016-01-20 19:11:15 +0800 |
---|---|---|
committer | sudan <sudan@douban.com> | 2016-01-20 19:11:15 +0800 |
commit | 084442616ffcceb309c71a62b123f7a11606576a (patch) | |
tree | 3ee7c3b2b7b9a454b8f1b3e8309c3edf25611541 /templates/layout.html | |
parent | some change (diff) | |
parent | misc updates (diff) | |
download | stackbin-084442616ffcceb309c71a62b123f7a11606576a.tar.gz stackbin-084442616ffcceb309c71a62b123f7a11606576a.tar.bz2 stackbin-084442616ffcceb309c71a62b123f7a11606576a.zip |
merge from jiawei
Diffstat (limited to 'templates/layout.html')
-rw-r--r-- | templates/layout.html | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/templates/layout.html b/templates/layout.html index 206f750..64298f2 100644 --- a/templates/layout.html +++ b/templates/layout.html @@ -1,25 +1,31 @@ <!doctype html> <title>{% block title %}{% endblock %} | Flask Pastebin</title> +<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0" /> +<meta name="apple-mobile-web-app-capable" content="yes"> +<meta name="apple-mobile-web-app-status-bar-style" content="black"> +<meta name="format-detection" content="telephone=no"> <link rel=stylesheet type=text/css href="{{ url_for('static', filename='style.css') }}"> -<script type=text/javascript src="{{ config.JUGGERNAUT_DRIVER }}"></script> -<script type=text/javascript src="{{ url_for('static', filename='jquery.js') }}"></script> +<link rel="stylesheet" media="screen and (max-width: 800px)" +href="{{ url_for('static', filename='small.css') }}" /> + +{#<script type=text/javascript src="{{ url_for('static', filename='jquery.js') }}"></script> <script type=text/javascript src="{{ url_for('static', filename='pastebin.js') }}"></script> <script type=text/javascript> pastebin.urlRoot = {{ request.url_root|tojson|safe }}; -{%- if g.user %} - pastebin.subscribeUser({{ g.user.id }}); -{%- endif %} </script> +#} <div class=page> <h1>Flask Pastebin</h1> <ul class=nav> <li><a href="{{ url_for('new_paste') }}">New Paste</a> + {# {% if g.user %} <li><a href="{{ url_for('my_pastes') }}">My Pastes</a> <li><a href="{{ url_for('logout') }}">Sign out ({{ g.user.display_name }})</a> {% else %} <li><a href="{{ url_for('login') }}">Sign in with Facebook</a> {% endif %} + #} </ul> {% for message in get_flashed_messages() %} <p class=flash>{{ message }} |