Files
irma-website/_includes/head.html
rowanG077 fa4ed7237b - Added IRMA logo as favicon.
- Added notranslate tag so google won't ask for translation.
- Added link tags in head to all translations.
2019-12-04 12:21:32 +01:00

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>