Feat: Multiplayer sessions added using CRUD database.
This commit is contained in:
43
templates/layouts/_shared_head.html
Normal file
43
templates/layouts/_shared_head.html
Normal file
@@ -0,0 +1,43 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta charset="utf-8"/>
|
||||
<title>{{ model.title }} - MTG</title>
|
||||
<meta name="description" content="Magic: The Gathering Commander game life tracking tool." />
|
||||
<meta name="keywords" content="" />
|
||||
<link rel="canonical" href="{{ model.get_url_host() }}" />
|
||||
<link rel="icon" type="image/x-icon" href="{{ url_for('static', filename='images/logo.ico') }}">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="{{ url_for('static', filename='images/logo-32.png') }}">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="{{ url_for('static', filename='images/logo-16.png') }}">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="{{ url_for('static', filename='images/logo-180.png') }}">
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "ProfessionalService",
|
||||
"name": "MTG Commander Life Tracker",
|
||||
"url": "{{ model.get_url_host() }}",
|
||||
"logo": "{{ model.get_url_host() }}{{ url_for('static', filename='images/logo.webp') }}",
|
||||
"description": "Magic: The Gathering trading card game commander life tracking tool web app.",
|
||||
"address": {
|
||||
"@type": "PostalAddress",
|
||||
"streetAddress": "The Russet, Sawbridge Road",
|
||||
"addressLocality": "Grandborough",
|
||||
"addressRegion": "Warwickshire",
|
||||
"postalCode": "CV23 8DN",
|
||||
"addressCountry": "United Kingdom"
|
||||
},
|
||||
"geo": {
|
||||
"@type": "GeoCoordinates",
|
||||
"latitude": "52.30",
|
||||
"longitude": "-1.28"
|
||||
},
|
||||
"openingHours": "Mo,Tu,We,Th,Fr 09:00-17:00",
|
||||
"priceRange": "$",
|
||||
}
|
||||
</script>
|
||||
<meta name="yandex-verification" content="e8c84f13a578a656" /> <!-- fetch-metrics.co.uk -->
|
||||
<meta name="yandex-verification" content="054b13bc60fb1625" /> <!-- fetch-metrics.com -->
|
||||
<meta name="yandex-verification" content="f3c1a9bc28976419" /> <!-- fetchmetrics.co.uk -->
|
||||
<meta id="{{ model.ID_CSRF_TOKEN }}" name="{{ model.FLAG_CSRF_TOKEN }}" content="{{ csrf_token() }}" />
|
||||
|
||||
|
||||
<link rel="preload" as="style" href="{{ url_for('static', filename='dist/css/main.bundle.css') }}" onload="this.onload=null;this.rel='stylesheet'">
|
||||
<noscript><link rel="stylesheet" href="{{ url_for('static', filename='dist/css/main.bundle.css') }}"></noscript>
|
||||
Reference in New Issue
Block a user