mirror of
https://github.com/gryf/window-maker.github.io.git
synced 2025-12-17 11:10:18 +01:00
Initial attempt at conversion to Jekyll
This commit is contained in:
1
_config.yml
Normal file
1
_config.yml
Normal file
@@ -0,0 +1 @@
|
||||
title: Window Maker
|
||||
37
_includes/dock.html
Normal file
37
_includes/dock.html
Normal file
@@ -0,0 +1,37 @@
|
||||
<div id="dock">
|
||||
<table width="64" height="500" border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td><a href="/"><img src="/homewmaker.png" alt="Home" width="60" height="81"></a></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><a href="/news.html"><img src=
|
||||
"/news.png" alt="News" width="60" height="81"></a></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><a href="/docs.html"><img src=
|
||||
"/docs.png" alt="Documentation" width="60" height="81"></a></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><a href="/lists.html"><img src="/mailing_list.png" alt="Mailing Lists" width="60" height=
|
||||
"81"></a></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><a href="/dev.html"><img src="/development.png" alt="Development" width="60" height=
|
||||
"81"></a></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><a href="/themes.html"><img src="/themes.png" alt="Themes" width="60" height=
|
||||
"81"></a></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><a href="/links.html"><img src="/links.png" alt="Links" width="60" height=
|
||||
"81"></a></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
@@ -2,7 +2,7 @@
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td width="100%">
|
||||
<a href="<?php echo $root;?>"><img src="<?php echo $root;?>header.png" style="min-width:700px" width="95%" alt="title bar"></a>
|
||||
<a href="/"><img src="/header.png" style="min-width:700px" width="95%" alt="title bar"></a>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="100%">
|
||||
25
_layouts/default.html
Normal file
25
_layouts/default.html
Normal file
@@ -0,0 +1,25 @@
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta name="generator" content="HTML Tidy for Linux (vers 25 March 2009), see www.w3.org" />
|
||||
|
||||
<title>Window Maker: {{ page.title }}</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
|
||||
<link href="title.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
{% include dock.html %}{% include header.html %}
|
||||
|
||||
<div>
|
||||
<table class="inner" border="0" cellpadding="1" cellspacing="1">
|
||||
<tr>
|
||||
<td content="content" colspan="2" valign="top">
|
||||
{{ content }}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
{% include footer.html %}
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,20 +1,8 @@
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta name="generator" content="HTML Tidy for Linux (vers 25 March 2009), see www.w3.org" />
|
||||
---
|
||||
layout: default
|
||||
title: Development
|
||||
---
|
||||
|
||||
<title>Window Maker: Development</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
|
||||
<link href="title.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<?php include("dock.php"); ?>
|
||||
<?php include("header.php"); ?>
|
||||
|
||||
<div>
|
||||
<table class="inner" border="0" cellpadding="1" cellspacing="1">
|
||||
<tr>
|
||||
<td content="content" colspan="2" valign="top">
|
||||
<p>Here are some pieces of information regarding development in Window Maker.</p>
|
||||
|
||||
<h3>Source code versioning system</h3>
|
||||
@@ -63,11 +51,3 @@
|
||||
</ul><br />
|
||||
<br />
|
||||
<br />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<?php include("footer.php"); ?>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
38
dock.php
38
dock.php
@@ -1,38 +0,0 @@
|
||||
<?php $root = "http://www.windowmaker.org/";?>
|
||||
<div id="dock">
|
||||
<table width="64" height="500" border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td><a href="<?php echo $root;?>home.php"><img src="<?php echo $root;?>homewmaker.png" alt="Home" width="60" height="81"></a></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><a href="<?php echo $root;?>news.php"><img src=
|
||||
"<?php echo $root;?>news.png" alt="News" width="60" height="81"></a></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><a href="<?php echo $root;?>docs.php"><img src=
|
||||
"<?php echo $root;?>docs.png" alt="Documentation" width="60" height="81"></a></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><a href="<?php echo $root;?>lists.php"><img src="<?php echo $root;?>mailing_list.png" alt="Mailing Lists" width="60" height=
|
||||
"81"></a></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><a href="<?php echo $root;?>dev.php"><img src="<?php echo $root;?>development.png" alt="Development" width="60" height=
|
||||
"81"></a></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><a href="<?php echo $root;?>themes.php"><img src="<?php echo $root;?>themes.png" alt="Themes" width="60" height=
|
||||
"81"></a></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><a href="<?php echo $root;?>links.php"><img src="<?php echo $root;?>links.png" alt="Links" width="60" height=
|
||||
"81"></a></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
@@ -1,20 +1,8 @@
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta name="generator" content="HTML Tidy for Linux (vers 25 March 2009), see www.w3.org" />
|
||||
---
|
||||
layout: default
|
||||
title: Documentation
|
||||
---
|
||||
|
||||
<title>Window Maker: Documentation</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
|
||||
<link href="title.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<?php include("dock.php"); ?>
|
||||
<?php include("header.php"); ?>
|
||||
|
||||
<div>
|
||||
<table class="inner" border="0" cellpadding="1" cellspacing="1">
|
||||
<tr>
|
||||
<td content="content" colspan="2" valign="top">
|
||||
<br />
|
||||
<br />
|
||||
|
||||
@@ -59,13 +47,3 @@
|
||||
in a system tray like <a href="http://sourceforge.net/projects/wmsystemtray">wmsystemtray</a> on your dock.</p>
|
||||
|
||||
<div align="center"><img src="essential_dockapps.png" alt="Essential dockapps" width="66" height="135" /><div>wmvolman and wmsystemtray with nm-applet</div></div>
|
||||
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<?php include("footer.php"); ?>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,20 +1,7 @@
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta name="generator" content="HTML Tidy for Linux (vers 25 March 2009), see www.w3.org" />
|
||||
|
||||
<title>Window Maker: Home</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
|
||||
<link href="title.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<?php include("dock.php"); ?>
|
||||
<?php include("header.php"); ?>
|
||||
|
||||
<div>
|
||||
<table class="inner" border="0" cellpadding="1" cellspacing="1">
|
||||
<tr>
|
||||
<td content="content" colspan="2" valign="top">
|
||||
---
|
||||
layout: default
|
||||
title: Home
|
||||
---
|
||||
<br />
|
||||
<br />
|
||||
|
||||
@@ -38,11 +25,3 @@
|
||||
<p>The latest <a href="http://repo.or.cz/w/wmaker-crm.git/shortlog/refs/heads/master">stable</a> version is
|
||||
<a href="http://windowmaker.org/pub/source/release/WindowMaker-0.95.8.tar.gz">0.95.8</a>,
|
||||
released on 11.03.2017. See the <a href="news.php">NEWS</a> section for more information.</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<?php include("footer.php"); ?>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,20 +1,8 @@
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta name="generator" content="HTML Tidy for Linux (vers 25 March 2009), see www.w3.org" />
|
||||
---
|
||||
layout: default
|
||||
title: Links
|
||||
---
|
||||
|
||||
<title>Window Maker: Links</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
|
||||
<link href="title.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<?php include("dock.php"); ?>
|
||||
<?php include("header.php"); ?>
|
||||
|
||||
<div>
|
||||
<table class="inner" border="0" cellpadding="1" cellspacing="1">
|
||||
<tr>
|
||||
<td content="content" colspan="2" valign="top">
|
||||
<br />
|
||||
<br />
|
||||
|
||||
@@ -87,11 +75,3 @@
|
||||
|
||||
<br><br><br>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<?php include("footer.php"); ?>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,20 +1,8 @@
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta name="generator" content="HTML Tidy for Linux (vers 25 March 2009), see www.w3.org" />
|
||||
---
|
||||
layout: default
|
||||
title: Mailing Lists
|
||||
---
|
||||
|
||||
<title>Window Maker: Mailing Lists</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
|
||||
<link href="title.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<?php include("dock.php"); ?>
|
||||
<?php include("header.php"); ?>
|
||||
|
||||
<div>
|
||||
<table class="inner" border="0" cellpadding="1" cellspacing="1">
|
||||
<tr>
|
||||
<td content="content" colspan="2" valign="top">
|
||||
<br />
|
||||
<br />
|
||||
|
||||
@@ -90,11 +78,3 @@
|
||||
<br /></p>
|
||||
</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<?php include("footer.php"); ?>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,20 +1,7 @@
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta name="generator" content="HTML Tidy for Linux (vers 25 March 2009), see www.w3.org" />
|
||||
|
||||
<title>Window Maker: News</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
|
||||
<link href="title.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<?php include("dock.php"); ?>
|
||||
<?php include("header.php"); ?>
|
||||
|
||||
<div>
|
||||
<table class="inner" border="0" cellpadding="1" cellspacing="1">
|
||||
<tr>
|
||||
<td content="content" colspan="2" valign="top">
|
||||
---
|
||||
layout: default
|
||||
title: News
|
||||
---
|
||||
|
||||
<h3>Version 0.95.8 released</h3>
|
||||
<p> Window Maker 0.95.8 was released on March 11th 2017.</p>
|
||||
@@ -274,11 +261,3 @@ the addition of a debian folder with files summing around ~20k lines. The full d
|
||||
<p><br /></p>
|
||||
|
||||
<div align="center"><img src="v0_95_1.png" alt="Info v0.95.1" width="382" height="257" /></div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<?php include("footer.php"); ?>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,19 +1,8 @@
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta name="generator" content="HTML Tidy for Linux (vers 25 March 2009), see www.w3.org" />
|
||||
---
|
||||
layout: default
|
||||
title: Themes
|
||||
---
|
||||
|
||||
<title>Window Maker: Themes</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
|
||||
<link href="title.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<?php include("dock.php"); ?>
|
||||
<?php include("header.php"); ?>
|
||||
|
||||
<table class="inner" border="0" cellpadding="1" cellspacing="1">
|
||||
<tr>
|
||||
<td content="content" colspan="2" valign="top">
|
||||
<br />
|
||||
<br />
|
||||
|
||||
@@ -44,12 +33,3 @@
|
||||
<a href="screenshots/NeXT-Retro.png"><img src="screenshots/thumb_NeXT-Retro.png" height="250" alt="NeXT-Retro" /></a><br />
|
||||
<b><a href="Themes/NeXT-Retro.tar.gz">NeXT-Retro</a></b> by Martin Dietze (<a href="Themes/NeXT-Retro_README.txt">README</a>, <a href="Themes/NeXT-Retro_dockapps.txt">dockapps information</a>) <p />
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<?php include("footer.php"); ?>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user