website/_layouts/default.html

37 lines
1.3 KiB
HTML

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="{lang:}">
<head>
<title>The Luon Network - {{ page.title }}</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="keywords" content="luon, network, linux, debian, system administration"/>
<meta name="description" content="The main site of the Luon Network;"/>
<meta name="robots" content="all"/>
<link href="default.css" rel="stylesheet"/>
</head>
<body>
<div id="content">
<div id="header">
<h1>The Luon Network; &#8210; {{ page.title }}</h1>
</div>
<div id="menu">
{% assign sorted_pages = site.pages | sort:"weight" %}
<ul>
{% for p in sorted_pages %}
<li><a {% if p.url == page.url %}class="active"{% endif %} href="{{ p.url }}">{{ p.title }}</a></li>
{% endfor %}
</ul>
</div>
<div id="body">
{{ content }}
</div>
<div id="footer" class="bar">
This site was (re)generated with <a href="http://jekyllrb.com">Jekyll</a> on <strong>{{ site.time | date: '%Y-%m-%d' }}</strong>
</div>
</div>
</body>
</html>