Add language and <link> tags
This commit is contained in:
parent
f1fb608e98
commit
6494e4b341
@ -3,7 +3,15 @@ layout: compress
|
||||
---
|
||||
|
||||
<!doctype html>
|
||||
|
||||
{% assign pathsplit = page.url | split: '/' %}
|
||||
{% assign language = pathsplit[1] %}
|
||||
{% assign language_info = site.data.languages | where: "code", language %}
|
||||
{% if language_info %}
|
||||
<html lang="{{ language }}">
|
||||
{% else %}
|
||||
<html>
|
||||
{% endif %}
|
||||
<head>
|
||||
<title>{% if page.homepage %}{% else %}{{ page.title }} - {% endif %}Minetest Modding Book</title>
|
||||
<meta charset="UTF-8">
|
||||
@ -13,6 +21,17 @@ layout: compress
|
||||
<meta name="author" content="rubenwardy">
|
||||
<meta name="flattr:id" content="gl763e">
|
||||
|
||||
<link rel="canonical" href="https://rubenwardy.com{{ page.url }}" />
|
||||
|
||||
{% assign oldSegment = "/" | append: language | append: "/" %}
|
||||
{% for other_lang in site.data.languages %}
|
||||
{% unless other_lang.code == language %}
|
||||
{% assign newSegment = "/" | append: other_lang.code | append: "/" %}
|
||||
|
||||
<link rel="alternate" hreflang="{{ other_lang.code }}" href="{{ page.url | replace: oldSegment, newSegment }}" />
|
||||
{% endunless %}
|
||||
{% endfor %}
|
||||
|
||||
<style>body,html,nav{background:#333}nav,nav li,nav li a{display:block}body,html,main,nav li{margin:0;padding:0}main,nav{position:absolute;top:0}body,html{font-size:17px;color:#000}#container{width:100%;max-width:1100px;margin:auto;position:relative}nav{left:0;width:280px;list-style:none;color:#fff}nav li a{padding:5px;color:#ccc;text-decoration:none}main{left:280px;right:0}article{background:#fff;padding:0 20px 20px}</style>
|
||||
<link rel="stylesheet" href="{{ page.root }}/static/style.css?v=2">
|
||||
</head>
|
||||
|
@ -1,6 +1,7 @@
|
||||
---
|
||||
layout: none
|
||||
---
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Redirecting...</title>
|
||||
|
Loading…
Reference in New Issue
Block a user