Queerscriptors.org/templates/layout.html

37 lines
1.8 KiB
HTML
Raw Normal View History

2022-08-21 11:31:33 +00:00
<!DOCTYPE html>
2022-08-26 21:57:51 +00:00
<html lang="{{ this.alt }}">
2022-11-01 10:49:25 +00:00
<head>
2022-11-03 21:07:05 +00:00
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="{{ _("A community of people that translate queer games") }}">
2022-11-01 10:49:25 +00:00
<!-- Open Graph Protocol -->
2022-11-03 21:07:05 +00:00
<meta name="og:title" content="{% block ogptitle %}Queerscriptors{% endblock %}">
<meta name="og:type" content="website">
<meta name="og:image" content="{{ this.ogpimage|url(absolute=True,external=True) }}">
<meta name="og:url" content="{{ '.'|url(absolute=True,external=True) }}">
<meta name="og:description" content="{% block ogpdesc %}{{ _("A community of people that translate queer games") }}{% endblock %}">
2022-11-01 10:49:25 +00:00
<!-- Twitter card (OGP equv) -->
2022-11-03 21:07:05 +00:00
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:domain" content="queerscriptors.org">
<meta name="twitter:url" content="{{ '.'|url(absolute=True,external=True) }}">
<meta name="twitter:title" content="{% block twittertitle %}Queerscriptors{% endblock %}">
<meta name="twitter:description" content="{% block twitterdesc %}{{ _("A community of people that translate queer games") }}{% endblock %}">
<meta name="twitter:image" content="{{ this.ogpimage|url(absolute=True,external=True) }}">
2022-11-01 10:49:25 +00:00
<title>{{ this.title }}</title>
2022-11-03 21:07:05 +00:00
<link rel="icon" type="image/svg+xml" href="{{ '/images/favicon.svg'|asseturl }}">
<link rel="icon" type="image/png" href="{{ '/images/favicon.png'|asseturl }}">
2022-11-01 10:49:25 +00:00
<!-- Fork Awesome-->
2022-11-03 21:07:05 +00:00
<link href="{{ '/css/fork-awesome.min.css'|asseturl }}" rel="stylesheet">
2022-11-01 10:49:25 +00:00
<!-- Fonts-->
2022-11-03 21:07:05 +00:00
<link href="{{ '/css/fonts.min.css'|asseturl }}" rel="stylesheet">
2022-11-01 10:49:25 +00:00
<!-- Core theme CSS (includes Bootstrap)-->
2022-11-22 21:52:47 +00:00
<link href="{{ '/css/styles.min.css'|asseturl }}" rel="stylesheet">
2022-11-01 10:49:25 +00:00
</head>
2022-08-21 11:31:33 +00:00
<body id="page-top">
2022-09-22 21:55:25 +00:00
{% block page %}{% endblock %}
2021-08-18 00:13:13 +00:00
{% include 'footer.html' %}
2022-08-21 11:31:33 +00:00
</body>
</html>