diff options
author | gbmor <ahriman@falte.red> | 2020-05-03 15:40:47 -0400 |
---|---|---|
committer | gbmor <ahriman@falte.red> | 2020-05-03 15:40:47 -0400 |
commit | c3cca82465e5256a515caa2d832de33b51f77c9c (patch) | |
tree | fab7623cad94fa018bf1c34d626b599e9daebd78 /index.php | |
parent | b8b53a1561014d6e8cf8144f66407e682408346d (diff) | |
download | site-c3cca82465e5256a515caa2d832de33b51f77c9c.tar.gz |
redesigned site; moved header/nav and news to separate files for ease of updating
Diffstat (limited to 'index.php')
-rwxr-xr-x | index.php | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/index.php b/index.php new file mode 100755 index 0000000..456e8d8 --- /dev/null +++ b/index.php @@ -0,0 +1,91 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> + +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <title>tilde.institute :: Public-access OpenBSD machine</title> + <link rel="stylesheet" href="tilde.css" type="text/css" /> + <link rel="icon" type="image/png" href="icon.png" /> +</head> + +<body> + <div id="container"> + <?php include("header.html"); ?> + <div id="front-content"> + <p>Welcome to tilde.institute! This is an public-access machine in the <a + href="https://tildeverse.org">tildeverse</a> whose purpose is to provide a space for people to + experiment with the <code>OpenBSD</code> operating system. A variety of editors, shells, and compilers + are installed to allow for development in a native <code>OpenBSD</code> environment. OpenBSD's + <code>httpd(8)</code> is configured with <code>slowcgi(8)</code> as the fastcgi provider and + <code>sqlite3</code> is available.</p> + <p>User sites are accessible via <code>https://<user>.tilde.institute</code></p> + <p style="margin-top:-1.0rem">A list of user gopher sites is available at + <code>gopher://tilde.institute</code></p> + <p>The mailing list will be the primary means of communication between tilde.institute admins and users + regarding announcements and critical issues. Web archive and <a + href="https://lists.tildeverse.org/postorius/lists/institute.lists.tildeverse.org/">subscribing + information available here</a>.</p> + <p>The list of compilers and interpreters available are as follows:</p> + <ul> + <li><code>brainf*ck 2.7.1</code></li> + <li><code>clang 8.0.1</code></li> + <li><code>clisp 2.49</code></li> + <li><code>clojure 1.10.0.4</code></li> + <li><code>crystal 0.30.1</code></li> + <li><code>elixir 1.9.1</code></li> + <li><code>erlang 21.2</code></li> + <li><code>gcc 8.3.0 (see the <a href="https://wiki.tilde.institute/w/gcc8">wiki page</a>)</code></li> + <li><code>gforth 0.7.3</code></li> + <li><code>gfortran / g95 8.3.0 (see the <a href="https://wiki.tilde.institute/w/gcc8">wiki page</a>)</code> + </li> + <li><code>ghc 8.6.4</code></li> + <li><code>gnat 8.3.0</code></li> + <li><code>go 1.13.1</code></li> + <li><code>guile 1.8.8</code></li> + <li><code>jdk 11 and 8 (see the <a href="https://wiki.tilde.institute/w/jdk">wiki page</a>)</code></li> + <li><code>lua 5.3.5 and 5.1.5</code></li> + <li><code>mono 5.20.1.34</code></li> + <li><code>nasm 2.14.02</code></li> + <li><code>nim 1.0.4</code></li> + <li><code>node.js 10.16.3</code></li> + <li><code>perl 5.28.2</code></li> + <li><code>php 7.3.16</code></li> + <li><code>python 2.7.16 and 3.7.4</code></li> + <li><code>racket 7.4</code></li> + <li><code>rakudo 2018.12</code></li> + <li><code>ruby 2.5.5 and 2.6.6</code></li> + <li><code>rust 1.38</code></li> + <li><code>scala 2.12.3</code></li> + <li><code>yasm 1.3.0</code></li> + </ul> + <p>Your interactive shell can be changed with the <code>chsh</code> command. The shells available:</p> + <ul> + <li><code>/bin/ksh (default)</code></li> + <li><code>/bin/sh</code></li> + <li><code>/bin/csh</code></li> + <li><code>/usr/local/bin/bash</code></li> + <li><code>/usr/local/bin/dash</code></li> + <li><code>/usr/local/bin/zsh</code></li> + <li><code>/usr/local/bin/fish</code></li> + <li><code>/usr/local/bin/tcsh</code></li> + <li><code>/usr/local/bin/elvish</code></li> + </ul> + <p>The IRC clients available by default are:</p> + <ul> + <li><code>weechat</code></li> + <li><code>irssi</code></li> + <li><code>ircII</code></li> + </ul> + <p>Feel free to contact the admins via <a href="mailto:admins@tilde.institute">admins@tilde.institute</a> or + on IRC in <code>#institute</code> if you need another package installed, or if you would like your + homepage's index changed from <code>index.html</code> to something else (<code>index.cgi</code>, + <code>index.php</code>, etc).</p> + </div> + <div id="news"> + <?php include("newsdata.html"); ?> + </div> + </div> +</body> + +</html> \ No newline at end of file |