Updated menus to more closely match current
This commit is contained in:
parent
b5b0cc3ac5
commit
ae45df913b
|
@ -30,6 +30,12 @@ exclude:
|
||||||
- .idea
|
- .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:
|
collections:
|
||||||
docs:
|
docs:
|
||||||
output: true
|
output: true
|
||||||
|
@ -39,9 +45,8 @@ collections:
|
||||||
- installation/install-script.md
|
- installation/install-script.md
|
||||||
- installation/docker.md
|
- installation/docker.md
|
||||||
- installation/manual.md
|
- installation/manual.md
|
||||||
- installation/os-hardware.md
|
- installation/hardware/rpi.md
|
||||||
- installation/rpi.md
|
- installation/hardware/windows.md
|
||||||
- installation/windows.md
|
|
||||||
- installation/network.md
|
- installation/network.md
|
||||||
- installation/testing.md
|
- installation/testing.md
|
||||||
- installation/production.md
|
- installation/production.md
|
||||||
|
@ -88,12 +93,12 @@ collections:
|
||||||
- art/views/text_view.md
|
- art/views/text_view.md
|
||||||
- art/views/toggle_menu_view.md
|
- art/views/toggle_menu_view.md
|
||||||
- art/views/vertical_menu_view.md
|
- art/views/vertical_menu_view.md
|
||||||
- servers/telnet.md
|
- servers/loginservers/telnet.md
|
||||||
- servers/ssh.md
|
- servers/loginservers/ssh.md
|
||||||
- servers/websocket.md
|
- servers/loginservers/websocket.md
|
||||||
- servers/web-server.md
|
- servers/contentservers/web-server.md
|
||||||
- servers/gopher.md
|
- servers/contentservers/gopher.md
|
||||||
- servers/nntp.md
|
- servers/contentservers/nntp.md
|
||||||
- modding/local-doors.md
|
- modding/local-doors.md
|
||||||
- modding/door-servers.md
|
- modding/door-servers.md
|
||||||
- modding/telnet-bridge.md
|
- modding/telnet-bridge.md
|
||||||
|
|
|
@ -20,3 +20,9 @@ misc:
|
||||||
title: Miscellaneous
|
title: Miscellaneous
|
||||||
views:
|
views:
|
||||||
title: Views
|
title: Views
|
||||||
|
hardware:
|
||||||
|
title: OS / Hardware Specific
|
||||||
|
loginservers:
|
||||||
|
title: Login Servers
|
||||||
|
contentservers:
|
||||||
|
title: Content Servers
|
||||||
|
|
|
@ -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 |
|
|
|
@ -44,17 +44,16 @@
|
||||||
<li>{{section}}</li>
|
<li>{{section}}</li>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
{% else %}
|
{% endif %}
|
||||||
|
|
||||||
{% if subdir != prevsubdir %}
|
{% if subdir != "NONE" and subdir != prevsubdir %}
|
||||||
<li>{{subsection}}</li>
|
<li>{{subsection}}</li>
|
||||||
<ul>
|
<ul>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if doc.url != page.url %}
|
{% 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 %}
|
{% else %}
|
||||||
<li class="active-nav">{{doc.title}}</li>
|
<li class="active-nav">{{doc.title}}</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
Loading…
Reference in New Issue