Add OpenGraph tags
This commit is contained in:
parent
b1b9177c62
commit
fdf8976570
@ -1,6 +1,7 @@
|
||||
---
|
||||
title: Front Cover
|
||||
layout: default
|
||||
description: An easy guide to learn how to create mods for Minetest
|
||||
homepage: true
|
||||
no_header: true
|
||||
root: ..
|
||||
|
@ -1,5 +1,6 @@
|
||||
---
|
||||
title: Copertina
|
||||
description: An easy guide to learn how to create mods for Minetest
|
||||
layout: default
|
||||
homepage: true
|
||||
no_header: true
|
||||
|
@ -16,12 +16,19 @@ layout: compress
|
||||
<title>{% if page.homepage %}{% else %}{{ page.title }} - {% endif %}Minetest Modding Book</title>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<meta name="description" content="An easy guide to learn how to create mods for Minetest">
|
||||
<meta name="keywords" content="Minetest, modding, book, tutorial, guide, easy">
|
||||
<meta name="author" content="rubenwardy">
|
||||
<meta name="flattr:id" content="gl763e">
|
||||
|
||||
<link rel="canonical" href="https://rubenwardy.com/minetest_modding_book{{ page.url }}">
|
||||
<meta name="og:url" content="https://rubenwardy.com/minetest_modding_book{{ page.url }}">
|
||||
<meta name="og:title" content="{{ page.title | escape }}">
|
||||
<meta name="og:site_name" content="Minetest">
|
||||
{% if page.description %}
|
||||
<meta name="og:description" content="{{ page.description | escape | strip }}">
|
||||
<meta name="description" content="{{ page.description | escape | strip }}">
|
||||
{% endif %}
|
||||
{% if page.image %}
|
||||
<meta name="og:image" content="{{ page.image | absolute_url }}">
|
||||
{% endif %}
|
||||
|
||||
{% assign oldSegment = "/" | append: language | append: "/" %}
|
||||
{% for other_lang in site.data.languages %}
|
||||
@ -33,6 +40,10 @@ layout: compress
|
||||
{% endunless %}
|
||||
{% endfor %}
|
||||
|
||||
{% if page.noindex %}
|
||||
<meta name="robots" content="noindex">
|
||||
{% endif %}
|
||||
|
||||
<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=3">
|
||||
</head>
|
||||
|
Loading…
Reference in New Issue
Block a user