From 4fe25ed883824c6d24240dd64da1416b666222fe Mon Sep 17 00:00:00 2001
From: Paul Garlick <pgarlick@tourbillion-technology.com>
Date: Wed, 1 Dec 2021 00:05:47 +0000
Subject: doc: Track index page for manuals.

* .gitignore: Add subdirectories and html file.
* manual/index.html: New file.
---
 .gitignore        |  4 +++-
 manual/index.html | 24 ++++++++++++++++++++++++
 2 files changed, 27 insertions(+), 1 deletion(-)
 create mode 100644 manual/index.html

diff --git a/.gitignore b/.gitignore
index e16fe72..38bd7e1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,6 @@
 BC*.txt
 *.info
-manual/
+manual/html_node/
+manual/images/
+manual/fullswof-utils.html
 doc/images/
diff --git a/manual/index.html b/manual/index.html
new file mode 100644
index 0000000..abca4cb
--- /dev/null
+++ b/manual/index.html
@@ -0,0 +1,24 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+ <head>
+   <meta http-equiv="content-type" content="text/html; charset=utf-8" />
+   <title>FullSWOF-utils Reference Manual</title>
+   <style type="text/css" media="all">
+     /* <![CDATA[ */
+       @import url(../css/manual.css);
+     /* ]]> */
+   </style>
+   <!-- needs a link element or script element for browser compatibility -->
+ </head>
+ <body>
+   <div>
+     <h1 class="center">FullSWOF-utils Reference Manual</h1>
+     <p class="center">Version 0.2 &mdash; 27th July 2020</p>
+     <ul>
+       <li><a href="html_node/index.html">HTML, with one page per node</a></li>
+       <li><a href="fullswof-utils.html">HTML, entirely on one page</a></li>
+     </ul>
+   </div>
+ </body>
+</html>
-- 
cgit