-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdefault.html
22 lines (17 loc) · 917 Bytes
/
default.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="{{ page.lang }}">
<head>
{% assign page_name = page.name | replace: '.html','' | replace: '.md','' %}
<meta charset="utf-8">
<title>{% if page.title %}{{ page.title | escape }} — {% else %}{{ site.data.translations[page_name].title[page.lang] | escape }} — {% endif %} {{ site.data.translations.global.paris-call[page.lang] | escape }}</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="{{ site.baseurl }}/assets/images/favicon.png">
<link href="{{ site.baseurl }}/assets/css/style.css" rel="stylesheet">
</head>
<body class="page {{ page.name | replace: '.md','' | replace: '.html','' | replace: '&','_' }}-page {{ page.layout }}-page">
{{ content }}
{% include footer.html %}
<script type="text/javascript" src="{{ site.baseurl }}/assets/js/scripts.js"></script>
{% include tracking.html %}
</body>
</html>