|
1 | 1 | <!doctype html> |
2 | 2 | <html> |
3 | 3 |
|
4 | | - <head> |
5 | | - <title>{{title}}</title> |
| 4 | +<head> |
| 5 | + <title>{{ title }}</title> |
6 | 6 | <meta charset="utf-8"> |
7 | | - <meta name="description" content="{{description}}"> |
8 | | - <link rel="shortcut icon" href="/favicon.ico"> |
| 7 | + <meta name="description" content="{{ description }}"> |
| 8 | + <link rel="shortcut icon" href="{{ url_for('static', filename='img/favicon.png') }}"/> |
| 9 | + <meta name="HandheldFriendly" content="True"/> |
| 10 | + <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover"/> |
| 11 | + <meta name="theme-color" content="#5eb9d7"/> |
| 12 | + |
| 13 | + <!-- OG & Twitter metadata --> |
| 14 | + <meta property="og:site_name" content="{{ title }}"/> |
| 15 | + <meta property="og:type" content="website"/> |
| 16 | + <meta property="og:title" content="{{ title }}"/> |
| 17 | + <meta property="og:description" content="{{ description }}"/> |
| 18 | + <meta property="og:url" content="https://flaskjinja.hackersandslackers.app/"/> |
| 19 | + <meta property="og:image" content="{{ url_for('static', filename='img/flask-jinja@2x.jpg') }}"/> |
| 20 | + <meta name="twitter:title" content="{{ title }}"/> |
| 21 | + <meta name="twitter:description" content="{{ description }}"/> |
| 22 | + <meta name="twitter:url" content="https://flaskjinja.hackersandslackers.app/"/> |
| 23 | + <meta name="twitter:site" content="@hackersslackers"/> |
| 24 | + <meta name="twitter:creator" content="@toddrbirchard"/> |
| 25 | + <meta name="twitter:card" content="summary_large_image"/> |
| 26 | + <meta name="twitter:image" content="{{ url_for('static', filename='img/flask-jinja@2x.jpg') }}"/> |
| 27 | + |
9 | 28 | {% block css %}{% endblock %} |
10 | | - </head> |
| 29 | +</head> |
11 | 30 |
|
12 | | - <body> |
13 | | - {% include 'navigation.html' %} |
14 | | - {% block content %}{% endblock %} |
15 | | - </body> |
| 31 | +<body> |
| 32 | +{% include 'navigation.html' %} |
| 33 | +{% block content %}{% endblock %} |
| 34 | +</body> |
16 | 35 |
|
17 | 36 | </html> |
0 commit comments