minetest_modding_book/_includes/header.html

29 lines
1.0 KiB
HTML
Raw Permalink Normal View History

2014-12-11 00:56:37 -08:00
<!doctype html>
<html>
<head>
2015-02-04 00:50:51 -08:00
<title>{% if page.title != "Introduction" %}{{ page.title }} - {% endif %}Minetest Modding Book</title>
2015-02-09 01:01:40 -08:00
<meta charset="UTF-8">
2015-02-06 11:16:14 -08:00
<meta name="viewport" content="width=device-width">
2015-02-09 00:59:21 -08:00
<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">
2014-12-11 00:56:37 -08:00
</head>
<body>
<ul id="navbar">
2014-12-31 08:43:27 -08:00
{% for link in site.data.links %}
{% if link.hr %}
{% assign hr = true %}
{% else %}
<li><a href="{{ page.root }}{{ link.link }}"
class="{% if page.title == link.title %}selected{% endif %}{% if hr %} hr {% endif %}">
{% if link.num %} {{ link.num }} - {% endif %}
{{ link.title }}</a></li>
{% assign hr = false %}
{% endif %}
{% endfor %}
<li><a href="https://github.com/rubenwardy/minetest_modding_book/archive/examples.zip">Download Examples</a><li>
2015-01-01 09:14:18 -08:00
<li><a id="printable">Printable Version</a><li>
2014-12-11 00:56:37 -08:00
</ul>
<div id="page">
2014-12-11 11:38:46 -08:00
<h1>{{ page.title }}</h1>