mirror of
https://github.com/jlengrand/irma-website.git
synced 2026-03-10 08:21:20 +00:00
- Added notranslate tag so google won't ask for translation. - Added link tags in head to all translations.
22 lines
1023 B
HTML
22 lines
1023 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ site.lang }}">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge,chrome=1">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<title>{% if page.title %}{{ page.title }}{% endif %}</title>
|
|
<meta name="author" content="{{ site.author }}">
|
|
<meta name="description" content="{{ site.description }}">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="google" content="notranslate">
|
|
<link rel="stylesheet" href="{{ "/css/ubuild.css" | prepend: site.baseurl_root }}"/>
|
|
<link rel="stylesheet" href="{{ "/css/irma.css" | prepend: site.baseurl_root }}"/>
|
|
<link rel="shortcut icon" type="image/png" href="{{ site.baseurl_root }}/uploads/non-free/favicon.png">
|
|
{% assign uniq_langs = site.languages | uniq %}
|
|
{% for lang in uniq_langs %}
|
|
<link rel="alternate" hreflang="{{ lang }}" href="{{ site.baseurl_root }}{{ page.url}}?lang={{ lang }}" >
|
|
{% endfor %}
|
|
</head>
|
|
|
|
<body> |