|
1 | 1 | {% extends "!layout.html" %}
|
2 | 2 | {%- block extrahead %}
|
3 | 3 | {{ super() }}
|
| 4 | + {%- if theme_show_meta_manifest_tag == true %} |
4 | 5 | <link rel="manifest" href="/manifest.json">
|
| 6 | + {% endif -%} |
| 7 | + {%- if theme_show_meta_og_tags == true %} |
| 8 | + <meta name="description" content="vcs abstraction layer"> |
| 9 | + |
| 10 | + <!-- Open Graph / Facebook --> |
| 11 | + <meta property="og:type" content="website"> |
| 12 | + <meta property="og:url" content="{{ theme_project_url }}/"> |
| 13 | + <meta property="og:title" content="libvcs"> |
| 14 | + <meta property="og:description" content="vcs abstraction layer"> |
| 15 | + <meta property="og:image" itemprop="image" content="{{ theme_project_url }}/_static/img/icons/icon-192x192.png"> |
| 16 | + |
| 17 | + <!-- Twitter --> |
| 18 | + <meta property="twitter:card" content="summary_large_image"> |
| 19 | + <meta property="twitter:url" content="{{ theme_project_url }} "> |
| 20 | + <meta property="twitter:title" content="libvcs"> |
| 21 | + <meta property="twitter:description" content="vcs abstraction layer"> |
| 22 | + <meta property="twitter:image" content="{{ theme_project_url }}/_static/img/icons/icon-512x512.png"> |
| 23 | + {% endif -%} |
| 24 | + {%- if theme_show_meta_app_icon_tags == true %} |
| 25 | + <meta name="theme-color" content="#ffffff"> |
| 26 | + <meta name="application-name" content="libvcs"> |
| 27 | + |
| 28 | + <link rel="shortcut icon" href="/_static/favicon.ico"> |
| 29 | + <link rel="icon" type="image/png" sizes="512x512" href="/_static/img/icons/icon-512x512.png"> |
| 30 | + <link rel="icon" type="image/png" sizes="32x32" href="/_static/img/icons/icon-32x32.png"> |
| 31 | + <link rel="icon" type="image/png" sizes="16x16" href="/_static/img/icons/icon-16x16.png"> |
| 32 | + |
| 33 | + <!-- Apple --> |
| 34 | + <meta name="apple-mobile-web-app-title" content="libvcs"> |
| 35 | + |
| 36 | + <link rel="apple-touch-icon" sizes="192x192" href="/_static/img/icons/icon-192x192.png"> |
| 37 | + <link rel="mask-icon" href="/_static/img/libvcs.svg" color="grey"> |
| 38 | + {% endif -%} |
5 | 39 | {% endblock %}
|
0 commit comments