|
15 | 15 | <head> |
16 | 16 | {%- block head %} |
17 | 17 | {%- block head_meta %} |
18 | | - <meta charset="utf-8" />{# must be at the beginning #} |
19 | | - <meta name="viewport" content="width=device-width, initial-scale=1" /> |
| 18 | + <meta charset="utf-8">{# must be at the beginning #} |
| 19 | + <meta name="viewport" content="width=device-width, initial-scale=1"> |
20 | 20 | {%- if pi_refresh -%} |
21 | | - {{ '<meta http-equiv="refresh" content="%d;URL=%s" />' % pi_refresh }} |
| 21 | + {{ '<meta http-equiv="refresh" content="%d;URL=%s">' % pi_refresh }} |
22 | 22 | {%- endif %} |
23 | 23 | {%- if html_head_meta %} |
24 | 24 | {%- for name, content in html_head_meta.items() %} |
25 | | - <meta name="{{ name }}" content="{{ content }}" /> |
| 25 | + <meta name="{{ name }}" content="{{ content }}"> |
26 | 26 | {%- endfor %} |
27 | 27 | {%- endif %} |
28 | 28 | {%- endblock -%} |
|
52 | 52 | {{ favicon }} |
53 | 53 |
|
54 | 54 | {%- block theme_stylesheets %} |
55 | | - <link media="all" rel="stylesheet" href="{{ url_for('static', filename='css/normalize.css') }}" /> |
56 | | - <link media="all" rel="stylesheet" href="{{ url_for('static', filename='css/variables.css') }}" /> |
| 55 | + <link media="all" rel="stylesheet" href="{{ url_for('static', filename='css/normalize.css') }}"> |
| 56 | + <link media="all" rel="stylesheet" href="{{ url_for('static', filename='css/variables.css') }}"> |
57 | 57 | {%- if theme_supp.variables_css() %} |
58 | | - <link media="all" rel="stylesheet" href="{{ theme_static('css/variables.css') }}" /> |
| 58 | + <link media="all" rel="stylesheet" href="{{ theme_static('css/variables.css') }}"> |
59 | 59 | {%- endif %} |
60 | | - <link media="all" rel="stylesheet" href="{{ url_for('serve.files', name='pygments', filename='css/colorful.css') }}" /> |
61 | | - <link media="all" rel="stylesheet" href="{{ url_for('serve.files', name='font_awesome', filename='css/all.css') }}" /> |
62 | | - <link media="all" rel="stylesheet" href="{{ url_for('static', filename='css/common.css') }}" /> |
63 | | - <link media="all" rel="stylesheet" href="{{ theme_static('css/theme.css') }}" /> |
| 60 | + <link media="all" rel="stylesheet" href="{{ url_for('serve.files', name='pygments', filename='css/colorful.css') }}"> |
| 61 | + <link media="all" rel="stylesheet" href="{{ url_for('serve.files', name='font_awesome', filename='css/all.css') }}"> |
| 62 | + <link media="all" rel="stylesheet" href="{{ url_for('static', filename='css/common.css') }}"> |
| 63 | + <link media="all" rel="stylesheet" href="{{ theme_static('css/theme.css') }}"> |
64 | 64 | {{ stylesheets }} |
65 | 65 | {%- endblock %} |
66 | 66 | {%- if user.valid and user.css_url -%} |
67 | | - <link media="all" rel="stylesheet" title="{{ user.name }}'s stylesheet" href="{{ user.css_url }}" /> |
| 67 | + <link media="all" rel="stylesheet" title="{{ user.name }}'s stylesheet" href="{{ user.css_url }}"> |
68 | 68 | {%- endif -%} |
69 | 69 | {%- endblock -%} |
70 | 70 | {%- endblock %} |
|
0 commit comments