From 0508a106fb0e048b8b0f1b1e42626cf907fbe4c6 Mon Sep 17 00:00:00 2001 From: Bottersnike Date: Fri, 9 Dec 2022 10:55:32 +0000 Subject: [PATCH] Manual pages stubs --- docs.py | 3 +++ templates/pages/sega/manual/index.html | 11 +++++++++++ templates/sega.html | 1 + 3 files changed, 15 insertions(+) create mode 100644 templates/pages/sega/manual/index.html diff --git a/docs.py b/docs.py index 59982ea..852864c 100644 --- a/docs.py +++ b/docs.py @@ -52,6 +52,9 @@ SEGA_CONTENTS = { "security.html": "Security", "groovemaster.html": "GrooveMaster.ini", }), + "manual": ("Manual", { + "keychip.html": "Keychip Modding" + }), # "network": ("Networking", { # "allnet.html": "ALL.Net" # }), diff --git a/templates/pages/sega/manual/index.html b/templates/pages/sega/manual/index.html new file mode 100644 index 0000000..463b90c --- /dev/null +++ b/templates/pages/sega/manual/index.html @@ -0,0 +1,11 @@ +{% extends "sega.html" %} +{% block title %}RingEdge Manual{% endblock %} +{% block body %} +

RingEdge Manual

+ +

An official manual for the RingEdge systems exist, but for love nor money I have been utterly unable to locate a copy, even physical.

+

Because of that, I've decided to write up my own set of instructions regarding maintainance of RingEdge systems. These pages are very incomplete at the moment!

+ +{{ generate_toc()|safe }} + +{% endblock %} \ No newline at end of file diff --git a/templates/sega.html b/templates/sega.html index b53ed43..d5eb894 100644 --- a/templates/sega.html +++ b/templates/sega.html @@ -7,6 +7,7 @@ Intro Software Hardware + Manual {% block body %}{% endblock %}