forked from
smokesignal.events/smokesignal
i18n+filtering fork - fluent-templates v2
1{% extends "base." + current_locale + ".html" %}
2{% block title %}{{ t("homepage-title") }}{% endblock %}
3{% block head %}
4<meta name="description" content="{{ t("homepage-description") }}">
5<meta property="og:title" content="{{ t("homepage-title") }}">
6<meta property="og:description" content="{{ t("homepage-description") }}">
7<meta property="og:site_name" content="{{ t("homepage-title") }}" />
8<meta property="og:type" content="website" />
9<meta property="og:url" content="{{ base }}/" />
10<script type="application/ld+json">
11{ "@context" : "https://schema.org", "@type" : "Organization", "url" : "{{ base }}/", "name": "{{ t("homepage-title") }}" }
12</script>
13{% endblock %}
14{% block content %}
15{% include 'index.' + current_locale + '.common.html' %}
16{% endblock %}