summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--static/og.pngbin0 -> 504309 bytes
-rw-r--r--templates/base.html20
2 files changed, 20 insertions, 0 deletions
diff --git a/static/og.png b/static/og.png
new file mode 100644
index 0000000..4685136
--- /dev/null
+++ b/static/og.png
Binary files differ
diff --git a/templates/base.html b/templates/base.html
index b259fdc..c17fc77 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -9,6 +9,26 @@
9 {% assets 'css' %} 9 {% assets 'css' %}
10 <link rel="stylesheet" href="{{ ASSET_URL }}"> 10 <link rel="stylesheet" href="{{ ASSET_URL }}">
11 {% endassets %} 11 {% endassets %}
12
13 <!-- Search Engine -->
14 <meta name="description" content="Keep your data, trash your meta!">
15 <meta name="image" content="{{ url_for('static', filename='og.png', _external=True) }}">
16 <!-- Schema.org for Google -->
17 <meta itemprop="name" content="MAT2 Web">
18 <meta itemprop="description" content="Keep your data, trash your meta!">
19 <meta itemprop="image" content="{{ url_for('static', filename='og.png', _external=True) }}">
20 <!-- Twitter -->
21 <meta name="twitter:card" content="summary">
22 <meta name="twitter:title" content="MAT2 Web">
23 <meta name="twitter:description" content="Keep your data, trash your meta!">
24 <meta name="twitter:image:src" content="{{ url_for('static', filename='og.png', _external=True) }}">
25 <!-- Open Graph general (Facebook, Pinterest & Google+) -->
26 <meta name="og:title" content="MAT2 Web">
27 <meta name="og:description" content="Keep your data, trash your meta!">
28 <meta name="og:image" content="{{ url_for('static', filename='og.png', _external=True) }}">
29 <meta name="og:url" content="{{ url_for('routes.upload_file', _external=True) }}">
30 <meta name="og:site_name" content="MAT2 Web">
31 <meta name="og:type" content="website">
12</head> 32</head>
13 33
14<body class="flex flex-col h-screen justify-between"> 34<body class="flex flex-col h-screen justify-between">