diff options
author | ahriman <ahriman@falte.red> | 2019-04-24 23:59:58 +0000 |
---|---|---|
committer | ahriman <ahriman@falte.red> | 2019-04-24 23:59:58 +0000 |
commit | 02a0b396b499f0d645c1905b02b0686d939167b7 (patch) | |
tree | 72e8872356e1976e27a2f4b08bf2a225beb95bdd /wiki.php | |
parent | 3caf4cbae7f16e25bf33f7afb98274458c6b60e7 (diff) | |
download | site-02a0b396b499f0d645c1905b02b0686d939167b7.tar.gz |
removed old wiki
Diffstat (limited to 'wiki.php')
-rw-r--r-- | wiki.php | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/wiki.php b/wiki.php deleted file mode 100644 index 39d4a0e..0000000 --- a/wiki.php +++ /dev/null @@ -1,52 +0,0 @@ -<!DOCTYPE PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/1/DTD/1-strict.dtd"> -<html xmlns="http://www.w3.org/1999/" lang="en" xml:lang="en"> -<head> - <meta http-equiv="Content-Type" content="text; charset=utf-8" /> - <meta name="viewport" content="width=device-width, initial-scale=1" /> - <title>tilde.institute :: Wiki</title> - <link rel="stylesheet" href="tilde.css" type="text/css"/> - <link rel="icon" type="image/png" href="icon.png"/> -</head> -<body> -<div id="container"> - <div id="logo"> - <img src="logo.png" alt="" /><br /> - <div id="logobyline"> - of OpenBSD Education - </div> - </div> - <div id="navigation"> - <a href="http://tilde.institute">News</a> :: <a href="/signup">Sign Up</a> :: <a href="/coc">Code of Conduct</a> :: <a href="https://tilde.zone/@tildeinstitute">Mastodon</a> :: <a href="https://wiki.tilde.institute">Wiki</a> :: <a href="https://tildegit.org/institute">Git</a> :: <a href="/stats">Stats</a> - </div> - <div id="content"> - <?php - if (!isset($_GET["page"]) || !file_exists("wikipages/{$_GET['page']}.wiki")) { - ?> - - <h2>~institute wiki</h2> - <p>Welcome to the tilde.institute wiki</p> - - <p>If you are new here, you likely want to check out the <a href="wiki.php?page=gettingstartedcommands">"getting started" page</a>"</p> - - <p>If you know your way around and want to contribute to the wiki, check out the - <a href="https://tildegit.org/institute/site/src/branch/master/wikipages">repository</a> and open a PR! - </p> - - <h3>Pages:</h3> - <a href="wiki.php?page=bchs">BCHS Intro Guide</a><br /> - <a href="wiki.php?page=dcss">Dungeon Crawl Stone Soup</a><br /> - <a href="wiki.php?page=finger">Finger</a><br /> - <a href="wiki.php?page=gopher">Getting Started With Gopher</a><br /> - <a href="wiki.php?page=gpg-for-ssh-auth">GnuPG for SSH Authentication</a><br /> - <a href="wiki.php?page=irc">IRC</a><br /> - <a href="wiki.php?page=password-store">password-store Usage Guide</a><br /> - <a href="wiki.php?page=unixprotips">UNIX ProTips</a><br /> - <?php - - } else { - include("wikipages/{$_GET['page']}.wiki"); - } ?> - </div> -</div> -</body> -</html> |