move docs page to sub folder as index

Changed files
+37 -37
site
-36
site/docs.php
··· 1 - <?php 2 - 3 - include "httpheaders.php"; 4 - 5 - ?> 6 - 7 - <!DOCTYPE html> 8 - <html lang="en"> 9 - 10 - <?php include "head.php" ?> 11 - 12 - <body> 13 - 14 - <main> 15 - <header> 16 - <h1 class="highlight" id="documentation">documentation</h1> 17 - </header> 18 - 19 - <?php include "nav_main.php" ?> 20 - 21 - <dl> 22 - <dt><a href="https://stash.4-walls.net/selfhostdw/">self hosting dreamwidth with docker</a> (<time datetime="2025-04-16">april 2025</time>)</dt> 23 - <dd>how to deploy a production instance of the <a href="https://github.com/dreamwidth/dreamwidth/">dreamwidth</a> code in docker</dd> 24 - <dt><a href="https://stash.4-walls.net/irc1/">hosting soju + gamja with docker</a> (<time datetime="2025-04-18">april 2025</time>)</dt> 25 - <dd>how to deploy the IRC gamja web client & soju bouncer software in docker</dd> 26 - <dt><a href="https://superlove.sayitditto.net/works/338">OTW-archive paperclip to active storage</a> (<time datetime="2024-06-01">june 2024</time>)</dt> 27 - <dd>now obsolete and superseded by upstream doing their own migration, but notable because i did it first</dd> 28 - <dt><a href="https://superlove.sayitditto.net/works/171">deploying OTW-archive through docker in production</a> (<time datetime="2024-04-06">april 2024</time>)</dt> 29 - <dd>not super well written and therefore overdue for a rewrite, but gets the gist.</dd> 30 - </dl> 31 - 32 - </main> 33 - 34 - </body> 35 - 36 - </html>
+36
site/docs/index.php
··· 1 + <?php 2 + 3 + include "../httpheaders.php"; 4 + 5 + ?> 6 + 7 + <!DOCTYPE html> 8 + <html lang="en"> 9 + 10 + <?php include "../head.php" ?> 11 + 12 + <body> 13 + 14 + <main> 15 + <header> 16 + <h1 class="highlight" id="documentation">documentation</h1> 17 + </header> 18 + 19 + <?php include "../nav_main.php" ?> 20 + 21 + <dl> 22 + <dt><a href="https://stash.4-walls.net/selfhostdw/">self hosting dreamwidth with docker</a> (<time datetime="2025-04-16">april 2025</time>)</dt> 23 + <dd>how to deploy a production instance of the <a href="https://github.com/dreamwidth/dreamwidth/">dreamwidth</a> code in docker</dd> 24 + <dt><a href="https://stash.4-walls.net/irc1/">hosting soju + gamja with docker</a> (<time datetime="2025-04-18">april 2025</time>)</dt> 25 + <dd>how to deploy the IRC gamja web client & soju bouncer software in docker</dd> 26 + <dt><a href="https://superlove.sayitditto.net/works/338">OTW-archive paperclip to active storage</a> (<time datetime="2024-06-01">june 2024</time>)</dt> 27 + <dd>now obsolete and superseded by upstream doing their own migration, but notable because i did it first</dd> 28 + <dt><a href="https://superlove.sayitditto.net/works/171">deploying OTW-archive through docker in production</a> (<time datetime="2024-04-06">april 2024</time>)</dt> 29 + <dd>not super well written and therefore overdue for a rewrite, but gets the gist.</dd> 30 + </dl> 31 + 32 + </main> 33 + 34 + </body> 35 + 36 + </html>
+1 -1
site/nav_main.php
··· 1 1 <nav> 2 2 3 3 <ul class="nav-main"> 4 - <li><a href="docs.php">docs</a></li> 4 + <li><a href="/docs">docs</a></li> 5 5 <li><a href="/vids">videos</a></li> 6 6 <li><a href="/floppies">floppies</a></li> 7 7 <li><a href="/">refresh</a></li>