2014-12-11 11:56:37 +03:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2015-02-04 11:50:51 +03:00
|
|
|
<title>{% if page.title != "Introduction" %}{{ page.title }} - {% endif %}Minetest Modding Book</title>
|
2014-12-11 11:56:37 +03:00
|
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
2014-12-12 12:13:17 +03:00
|
|
|
<link rel="stylesheet" href="{{ page.root }}static/style.css">
|
2014-12-12 12:13:52 +03:00
|
|
|
<link rel="stylesheet" href="{{ page.root }}static/syntax.css">
|
2014-12-11 11:56:37 +03:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<ul id="navbar">
|
2014-12-31 19:43:27 +03: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 %}
|
2015-01-01 20:14:18 +03:00
|
|
|
<li><a id="printable">Printable Version</a><li>
|
2014-12-11 11:56:37 +03:00
|
|
|
</ul>
|
|
|
|
<div id="page">
|
2014-12-11 22:38:46 +03:00
|
|
|
<h1>{{ page.title }}</h1>
|