26 lines
873 B
HTML
Raw Normal View History

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