add /projects/ section, rather than just link to gitweb in navigation
authorSteven McDonald <steven@steven-mcdonald.id.au>
Wed, 28 Sep 2011 11:41:03 +0000 (21:41 +1000)
committerSteven McDonald <steven@steven-mcdonald.id.au>
Wed, 28 Sep 2011 11:41:03 +0000 (21:41 +1000)
navigation.shtml
projects/index.shtml [new file with mode: 0644]

index e8bca0fc6b48298d1ba3ff4cde788b8d96f02acb..9c85db5fae103eeec892ad04c4f6e40bac26d88a 100644 (file)
@@ -4,7 +4,7 @@
   <a href="/">Home</a>
  </li>
  <li>
   <a href="/">Home</a>
  </li>
  <li>
-  <a href="http://git.steven-mcdonald.id.au/">Projects</a>
+  <a href="/projects/">Projects</a>
  </li>
  <li>
   <a href="/tutorials/">Tutorials</a>
  </li>
  <li>
   <a href="/tutorials/">Tutorials</a>
diff --git a/projects/index.shtml b/projects/index.shtml
new file mode 100644 (file)
index 0000000..111c3bc
--- /dev/null
@@ -0,0 +1,58 @@
+<!--#include virtual="/doctype.txt"-->
+<html>
+
+<!--#include virtual="/head.shtml"-->
+
+<body>
+
+<!--#include virtual="/header.shtml"-->
+
+<!--#include virtual="/navigation.shtml"-->
+
+<div id="content">
+
+<h1>Projects</h1>
+
+<p>
+I have <a href="http://git.steven-mcdonald.id.au/">Gitweb</a> set up to
+track various projects I'm working on in git. I will soon be installing
+git-daemon to complement this.
+</p>
+
+<p>
+I also have <a href="http://ftp.steven-mcdonald.id.au/debian-packages/">
+an APT repository</a> for Debian sid, which I am using as a place to
+upload my Debian packaging before it is ready for Debian. Please don't
+ask me to support anything other than sid; my aim here is to get packages
+into Debian itself, not to provide yet another third-party repo.
+</p>
+
+<p>
+That said, if you want to test packages I've uploaded here, add something
+like this to /etc/apt/sources.list:
+</p>
+
+<code>
+# Steven McDonald's APT repository
+deb http://ftp.steven-mcdonald.id.au/debian-packages/ unstable main
+deb-src http://ftp.steven-mcdonald.id.au/debian-packages/ unstable main
+</code>
+
+<p>
+This repository has its Release file signed with <a
+href="http://www.steven-mcdonald.id.au/pgp_public_key.asc">my OpenPGP key
+</a>, so you'll probably want to tell APT to trust it. For the lazy:
+</p>
+
+<code>
+$ wget -qO/dev/stdout http://www.steven-mcdonald.id.au/pgp_public_key.asc
+| sudo apt-key add -
+</code>
+
+</div>
+
+<!--#include virtual="/footer.shtml"-->
+
+</body>
+
+</html>