initial commit

This commit is contained in:
2026-08-16 12:11:23 +02:00
commit 2e1c3a536d
93 changed files with 4777 additions and 0 deletions
+61
View File
@@ -0,0 +1,61 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="{{ description }}">
<link rel="canonical" href="{{ site.domain }}{{ permalink }}">
<title>moonweb.org - {{ pageTitle | default("The " + section) }}</title>
<link rel="stylesheet" type="text/css" href="/assets/css/moonweb.css">
<link rel="stylesheet" type="text/css" href="/assets/css/nav-replacement.css">
<link rel="icon" href="/assets/images/favicon.ico">
</head>
<body background="/assets/images/background.gif" topmargin="0" leftmargin="0" marginwidth="0" marginheight="0">
<table border="0" cellpadding="0" cellspacing="0" width="750" height="100%"><tr><td valign="top">
<table border="0" cellpadding="0" cellspacing="0" width="108">
<tr><td>
<img src="/assets/pageImage/{{ section }}.jpg" alt="{{ section }}" height="162" width="108" border="0">
</td></tr>
<tr><td align="left">
&nbsp;
{% if quicknav %}{% include "quicknav.njk" %}{% endif %}
</td></tr>
</table>
</td><td valign="top">
<img src="/assets/images/pixel-white.gif" height="10" width="400"><br>
<table border="0" cellpadding="10" cellspacing="0" width="492"><tr><td>
<h1>{{ pageTitle | default("The " + section) }}</h1>
{{ content | safe }}
</td></tr></table>
</td><td valign="top">
<table border="0" cellpadding="0" cellspacing="0" width="150">
<tr height="20"><td>&nbsp;</td></tr>
<tr height="295"><td>
<table border="0" cellpadding="0" cellspacing="0"><tr>
<td width="130" valign="top">
{% include "nav.njk" %}
</td>
<td width="60"><img src="/assets/images/logo.gif" height="295" width="61" alt="M O O N W E B"></td>
</tr></table>
</td></tr>
</table>
</td></tr>
<tr><td align="center"></td><td colspan="2">
<table border="0" cellpadding="10" cellspacing="0" width="610"><tr><td>
<hr>
<p class="footer">
{% if lastChanged %}last changed {{ lastChanged }} - {% endif %}
<a href="mailto:{{ site.contactEmail }}">{{ site.contactEmail }}</a> - (c) 2001-2026 moonweb.org
</p>
</td></tr></table>
</td></tr>
</table>
</body>
</html>
+14
View File
@@ -0,0 +1,14 @@
<table border="0" cellpadding="0" cellspacing="0">
{% for group in nav %}
<tr><td>
{% for item in group %}
<a href="{% if item == "beginning" %}/{% else %}/{{ item }}/index.html{% endif %}"
class="menu-item menu-{{ item }}{% if item == section %} active{% endif %}"
aria-current="{% if item == section %}page{% else %}false{% endif %}">{{ item }}</a>
{% endfor %}
</td></tr>
{% if not loop.last %}
<tr><td><img src="/assets/images/pixel-white.gif" width="76" height="15" border="0" alt=""></td></tr>
{% endif %}
{% endfor %}
</table>
+2
View File
@@ -0,0 +1,2 @@
<!-- quicknav -->
<table border="0" cellpadding="0" cellspacing="0" width="100" class="quicknav-table"><tr><td width="100" height="49"><img src="/assets/images/quicknav-top.gif" width="100" height="49" alt="quicknav"></td></tr><tr><td width="100" background="/assets/images/quicknav-back.gif"><table border="0" cellpadding="0" cellspacing="0" width="85"><tr><td width="85" align="right">{% for entry in quicknav %}<a href="{{ entry.url }}" class="quicknav">{{ entry.label }}</a>{% if not loop.last %}<br>{% endif %}{% endfor %}</td></tr></table></td></tr><tr><td width="100" height="70"><img src="/assets/images/quicknav-end.gif" width="100" height="70" alt="quicknav"></td></tr></table>
+12
View File
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="refresh" content="0;url={{ redirectTo }}">
<title>Redirecting to {{ redirectTo }}</title>
</head>
<body>
<p>Redirecting to <a href="{{ redirectTo }}">{{ redirectTo }}</a>…</p>
</body>
</html>