Add swiki page, cleanup

This commit is contained in:
Jacob 2023-08-10 02:27:26 +02:00
parent 636eed4a06
commit 3d3f4634ac
4 changed files with 26 additions and 3 deletions

View file

@ -16,6 +16,9 @@
<h3 class="spmenu">spmenu</h3> <h3 class="spmenu">spmenu</h3>
<p>spmenu is a simple X11 and Wayland menu application which takes standard input, parses it, lets the user choose an option and sends the selected option to standard output. It also serves as a run launcher and desktop launcher through the included shell script spmenu_run, which handles both $PATH listing, .desktop entries, and file listing.</p> <p>spmenu is a simple X11 and Wayland menu application which takes standard input, parses it, lets the user choose an option and sends the selected option to standard output. It also serves as a run launcher and desktop launcher through the included shell script spmenu_run, which handles both $PATH listing, .desktop entries, and file listing.</p>
<p><a href="/projects/spmenu.php">More information</a> <a href="https://spmenu.speedie.site">Wiki</a> <a href="https://git.speedie.site/speedie/spmenu">Git repository</a></p> <p><a href="/projects/spmenu.php">More information</a> <a href="https://spmenu.speedie.site">Wiki</a> <a href="https://git.speedie.site/speedie/spmenu">Git repository</a></p>
<h3 class="swiki">swiki</h3>
<p>swiki is the wiki software powering the <a href="https://spmenu.speedie.site">spmenu wiki</a>. it is a simple read-only wiki written in PHP. Pages/articles are written in Markdown and should be created or edited locally and submitted/managed using Git.</p>
<p><a href="/projects/swiki.php">More information</a> <a href="https://git.speedie.site/speedie/swiki">Git repository</a></p>
<h3 class="fontctrl">fontctrl</h3> <h3 class="fontctrl">fontctrl</h3>
<p>fontctrl is a minimal, symlink based font manager for GNU/Linux. It handles installation, removal, and management of fonts, keeping your custom fonts easy to install, remove and manage.</p> <p>fontctrl is a minimal, symlink based font manager for GNU/Linux. It handles installation, removal, and management of fonts, keeping your custom fonts easy to install, remove and manage.</p>
<p><a href="/projects/fontctrl.php">More information</a> <a href="https://git.speedie.site/speedie/fontctrl">Git repository</a></p> <p><a href="/projects/fontctrl.php">More information</a> <a href="https://git.speedie.site/speedie/fontctrl">Git repository</a></p>

View file

@ -7,7 +7,6 @@
<meta name="description" content="speedie's fork of suckless.org's dwm"> <meta name="description" content="speedie's fork of suckless.org's dwm">
<meta name="author" content="speedie"> <meta name="author" content="speedie">
<meta http-equiv="content-type" content="text/html; charset=UTF-8"> <meta http-equiv="content-type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="speedwm.css">
<title>Welcome to speedie.site</title> <title>Welcome to speedie.site</title>
</head> </head>
<body> <body>

View file

@ -7,8 +7,6 @@
<meta name="description" content="speedie's fork of suckless dmenu."> <meta name="description" content="speedie's fork of suckless dmenu.">
<meta name="author" content="speedie"> <meta name="author" content="speedie">
<meta http-equiv="content-type" content="text/html; charset=UTF-8"> <meta http-equiv="content-type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="speedwm.css">
<title>Welcome to speedie.site</title>
</head> </head>
<body> <body>
<div class="content"> <div class="content">

23
projects/swiki.php Normal file
View file

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<?php include '../php/header.php';?>
<title>swiki</title>
<meta charset="UTF-8">
<meta name="description" content="Simple, suckless read-only wiki">
<meta name="author" content="speedie">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Welcome to speedie.site</title>
</head>
<body>
<div class="content">
<h2>swiki</h2>
<p>swiki is a simple read-only wiki written in PHP. Pages/articles are written in Markdown and should be created or edited locally and submitted/managed using Git.</p>
<p>For more information, see <a href="https://git.speedie.site/speedie/swiki">the Git repository.</a></p>
</div>
</body>
<footer>
<?php include '../php/footer.php';?>
</footer>
</html>