aboutsummaryrefslogtreecommitdiff
path: root/templates/layout.html
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-02-13 19:19:03 -0500
committerB. Stack <bgstack15@gmail.com>2022-02-13 19:19:03 -0500
commit2e5ef31e697fbd01f7438c389edb40aac60839fc (patch)
tree5e6d478a5b4de6200fe201114a8593307852a4a8 /templates/layout.html
parentadd admin page, delete function, and APPNAME var (diff)
downloadstackbin-2e5ef31e697fbd01f7438c389edb40aac60839fc.tar.gz
stackbin-2e5ef31e697fbd01f7438c389edb40aac60839fc.tar.bz2
stackbin-2e5ef31e697fbd01f7438c389edb40aac60839fc.zip
add redirects after delete, and simplify css calls
Diffstat (limited to 'templates/layout.html')
-rw-r--r--templates/layout.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/layout.html b/templates/layout.html
index fc2d8e5..3c6d8ab 100644
--- a/templates/layout.html
+++ b/templates/layout.html
@@ -5,7 +5,7 @@
<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') }}">
-<link rel="stylesheet" media="screen and (max-width: 800px)" href="{{ url_for('static', filename='small.css') }}" />
+{#<link rel="stylesheet" media="screen and (max-width: 800px)" href="{{ url_for('static', filename='small.css') }}" />#}
<div class=page>
<ul class=nav>
<li><a href="{{ url_for('new_paste') }}">New Paste</a>
bgstack15