diff options
Diffstat (limited to 'pastepy/templates/full.html')
-rw-r--r-- | pastepy/templates/full.html | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/pastepy/templates/full.html b/pastepy/templates/full.html index c60126e..743bed9 100644 --- a/pastepy/templates/full.html +++ b/pastepy/templates/full.html @@ -1,14 +1,17 @@ <!DOCTYPE html> <html lang="en"> <head> - <title>{{ title }}</title> - <link rel="StyleSheet" href="{{ url_for('.highlight_stylesheet') }}" type="text/css"> - <link rel="StyleSheet" href="{{ url_for('static', filename='paste.css') }}" type="text/css"> - <script type="text/javascript" src="{{ url_for('static', filename='view.js') }}"></script> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> + <title>{{ config.PASTEBIN_NAME }}{% if title %} – {{ title }}{% endif %}</title> + <link rel="StyleSheet" href="{{ url_for('static', filename='css/bootstrap.flatly.min.css') }}" type="text/css" id="bootstrap-css"> + <link rel="StyleSheet" href="{{ url_for('static', filename='css/paste.css') }}" type="text/css" id="pastepy-css"> + <link rel="StyleSheet" href="{{ url_for('.highlight_stylesheet') }}" type="text/css" id="pygments-css"> + <script src="{{ url_for('static', filename='js/theme.js') }}" type="text/javascript"></script> </head> <body> {% if rendered %} -<div class="paste-rendered"> +<div class="container-fluid"> {% endif %} {{ text|safe }} {% if rendered %} |