Updated menus to more closely match current

This commit is contained in:
Nathan Byrd 2022-02-04 11:11:00 -06:00
parent b5b0cc3ac5
commit ae45df913b
12 changed files with 23 additions and 27 deletions

View File

@ -30,6 +30,12 @@ exclude:
- .idea
# New documents that are not included below under order will display at the
# end of the list. Section names for directories and subdirectories are
# setup in _data/sections.yml. Change there in order to update the name of
# one of the subdirectories or to add a new one.
collections:
docs:
output: true
@ -39,9 +45,8 @@ collections:
- installation/install-script.md
- installation/docker.md
- installation/manual.md
- installation/os-hardware.md
- installation/rpi.md
- installation/windows.md
- installation/hardware/rpi.md
- installation/hardware/windows.md
- installation/network.md
- installation/testing.md
- installation/production.md
@ -88,12 +93,12 @@ collections:
- art/views/text_view.md
- art/views/toggle_menu_view.md
- art/views/vertical_menu_view.md
- servers/telnet.md
- servers/ssh.md
- servers/websocket.md
- servers/web-server.md
- servers/gopher.md
- servers/nntp.md
- servers/loginservers/telnet.md
- servers/loginservers/ssh.md
- servers/loginservers/websocket.md
- servers/contentservers/web-server.md
- servers/contentservers/gopher.md
- servers/contentservers/nntp.md
- modding/local-doors.md
- modding/door-servers.md
- modding/telnet-bridge.md

View File

@ -20,3 +20,9 @@ misc:
title: Miscellaneous
views:
title: Views
hardware:
title: OS / Hardware Specific
loginservers:
title: Login Servers
contentservers:
title: Content Servers

View File

@ -1,14 +0,0 @@
---
layout: page
title: OS & Hardware Specific Information
---
There are multiple ways of installing ENiGMA BBS, depending on your level of experience and desire to do things manually versus have it automated for you.
In general, please see [Installation Methods](installation-methods.md) and [Install Script](install-script.md).
Below are some special cases:
| Method | Notes |
|--------|-------|
| [Raspberry Pi](rpi.md) | All Raspberry Pi models work great with ENiGMA½! |
| [Windows](windows.md) | Compatible with all Windows Operating Systems |

View File

@ -44,17 +44,16 @@
<li>{{section}}</li>
<ul>
{% else %}
{% endif %}
{% if subdir != prevsubdir %}
{% if subdir != "NONE" and subdir != prevsubdir %}
<li>{{subsection}}</li>
<ul>
{% endif %}
{% endif %}
{% if doc.url != page.url %}
<li><a href="{{site.baseurl}}{{doc.url}}">{{doc.title}}</a></li>
<li><a href="{{site.baseurl}}{{doc.url}}">{{doc.title}}</a></li>
{% else %}
<li class="active-nav">{{doc.title}}</li>
{% endif %}