forked from organicmaps/website
103 lines
3.6 KiB
HTML
103 lines
3.6 KiB
HTML
{%- if page %}
|
|
{%- set resource = page %}
|
|
{%- set resource_title = resource.title %}
|
|
{%- set resource_path = resource.path %}
|
|
{%- elif section %}
|
|
{%- set resource = section %}
|
|
{%- set resource_title = resource.title %}
|
|
{%- set resource_path = resource.path %}
|
|
{%- elif term %}
|
|
{%- set resource = term %}{# taxonomy term has only 'name', 'slug' and 'path' properties #}
|
|
{%- set resource_path = resource.path %}
|
|
{%- set resource_title = resource.name %}
|
|
{%- elif taxonomy %}
|
|
{%- set resource = taxonomy %}{# taxonomy has only 'name' and 'slug' properties #}
|
|
{%- set resource_path = '/' ~ resource.name ~ '/' %}
|
|
{%- set resource_title = resource.name %}
|
|
{%- endif %}
|
|
|
|
<!DOCTYPE html>
|
|
{%- set rtl_langs = ["ar", "arc", "dv", "fa", "ha", "he", "khw", "ks", "ku", "ps", "ur", "yi"] -%}
|
|
<html lang="{{ lang }}" {%- if lang in rtl_langs -%} dir="rtl" {%- endif -%}>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover">
|
|
|
|
{% block meta_description %}
|
|
<meta name="description" content="{{ resource.description }}">
|
|
{% endblock %}
|
|
|
|
{% block rss %}
|
|
<link rel="alternate" type="application/rss+xml" title="RSS" href="{{ get_url(path="rss.xml", trailing_slash=false) }}">
|
|
{% endblock %}
|
|
|
|
<link rel="canonical" href="{{ config.base_url | safe }}{{ resource_path | safe }}">
|
|
|
|
{%- set preview_image = 'images/screenshots/prague.jpg' -%}
|
|
{%- if resource.extra.preview_image -%}
|
|
{%- set preview_image = resource.extra.preview_image -%}
|
|
{%- elif resource.assets %}
|
|
{%- set basename = resource.assets[0] | split(pat='/') | last %}
|
|
{%- if basename is ending_with('.jpg') or basename is ending_with('.jpeg') or basename is ending_with('.png') or basename is ending_with('.webp') %}
|
|
{%- set preview_image = resource_path ~ basename -%}
|
|
{%- endif %}
|
|
{%- endif %}
|
|
<meta property="og:image" content="{{ get_url(path=preview_image) }}">
|
|
<meta property="og:url" content="{{ current_url | safe }}">
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:title" content="{{ resource_title }}">
|
|
{%- if resource.description -%}
|
|
<meta property="og:description" content="{{ resource.description }}">
|
|
{%- endif -%}
|
|
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
<meta name="twitter:title" content="{{ resource_title }}">
|
|
{%- if resource.description -%}
|
|
<meta name="twitter:description" content="{{ resource.description }}">
|
|
{%- endif -%}
|
|
|
|
<meta name="apple-itunes-app" content="app-id=1567437057">
|
|
<meta name="wikidata" content="Q107078602">
|
|
|
|
{% if resource.date -%}
|
|
<meta property="article:published_time" content="{{ resource.date }}">
|
|
{%- endif -%}
|
|
|
|
<meta name="generator" content="Zola">
|
|
|
|
{%- block meta -%}{%- endblock %}
|
|
|
|
<link href="{{ get_url(path="main.css", cachebust=true) }}" rel="stylesheet" type="text/css">
|
|
|
|
<title>{{ resource_title }}</title>
|
|
|
|
{%- if lang == config.default_language %}
|
|
{% include 'language_redirect.html' %}
|
|
{% endif -%}
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
{% include 'top_menu.html' %}
|
|
</header>
|
|
|
|
<main>
|
|
{% if page.taxonomies and page.taxonomies.faq %}{# Show FAQ breadcrumbs #}
|
|
{% include 'faq/faq-breadcrumbs.html' %}
|
|
{% endif %}
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
|
|
<footer>
|
|
{% include 'bottom_menu.html' %}
|
|
<p>
|
|
<span>© 2023 <a href="mailto:legal@organicmaps.app">Organic Maps OÜ</a>, reg. code 16225385</span>
|
|
<span>Harju maakond, Tallinn, Kesklinna linnaosa, Rävala pst 8-810, 10143, Estonia</span>
|
|
</p>
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
</html>
|