minetest_modding_book/_includes/header.html

25 lines
822 B
HTML
Raw Normal View History

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