Add content to the front page
authorAnders Bergh <anders1@gmail.com>
Sun, 16 Dec 2007 21:04:10 -0800
changeset 5 f29a43ca4760
parent 4 946a11dbdb23
child 7 c9bd17599375
Add content to the front page
htdocs/index.html
htdocs/style.css
--- a/htdocs/index.html	Mon Dec 17 05:30:04 2007 +0100
+++ b/htdocs/index.html	Sun Dec 16 21:04:10 2007 -0800
@@ -1,5 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
-"http://www.w3.org/TR/html4/strict.dtd">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
 <html>
 	<head>
 		<title>Happy Mars</title>
@@ -9,6 +8,32 @@
 	<body>
 		<h1>Happy Mars</h1>
 
-		<p>I'm setting this up again.</p>
+		<h2>News</h2>
+		<h3>2007-12-17: Happy Mars is back!</h3>
+		<p>Happy Mars is back again. This time it's not only limited to D-related packages, but includes most of my packages from the AUR such as <span class="pkg">luajit</span>, <span class="pkg">premake</span> and many more.
+		<p>x86_64 users should be happy to know that I'm focusing a lot more on x86_64 this time, and I promise to provide a nice and library-seperated version of <span class="pkg">gdc</span> and <span class="pkg">gdc-svn</span>! I'll probably do a <span class="pkg">bin32-dmd</span> package as well, if you need <span class="pkg">dmd</span> for some reason.</p>
+		<p>I've adopted most of the D packages hosted at the AUR these days too, so if you don't want to use this repository for various reasons, you can always use the AUR (with or without a tool such as <span class="pkg">yaourt</span>). Have fun!</p>
+
+		<h2>Setting up your Arch Linux system to use Happy Mars</h2>
+		<h3>i686</h3>
+		<p>Add the following to your <span class="path">/etc/pacman.conf</span>:</p>
+		<pre class="file">[happymars]
+Server = http://happymars.andersman.org/i686</pre>
+		<h3>x86_64</h3>
+		<p>Add the following to your <span class="path">/etc/pacman.conf</span>:</p>
+		<pre class="file">[happymars]
+Server = http://happymars.andersman.org/x86_64</pre>
+
+		<h2>Mercurial repository</h2>
+		<p>All PKGBUILD's are hosted in my private Mercurial repository. To download the whole repository:</p>
+		<pre class="term">$ hg clone <a href="http://hg.andersman.org/happymars">http://hg.andersman.org/happymars</a></pre>
+		<p>You can also browse the web interface, just click the link above.</p>
+
+		<h2>Contributing</h2>
+		<p>If you want to contribute directly, just contact me (see below).</p>
+		<p>If you have a D-related package in the AUR and you want me to host binary packages I'll be happy to do so!</p>
+
+		<h2>Contact</h2>
+		<p>You can find me at irc.freenode.net in #happymars.</p>
 	</body>
 </html>
--- a/htdocs/style.css	Mon Dec 17 05:30:04 2007 +0100
+++ b/htdocs/style.css	Sun Dec 16 21:04:10 2007 -0800
@@ -1,3 +1,23 @@
 body {
 	font-family: Arial, Helvetica, sans-serif;
 }
+
+.term,.file {
+	background: #EFEFEF;
+	color: gray;
+	padding: 5px;
+	border: 1px solid #808080;
+}
+
+.term,.file a {
+	color: gray;
+}
+
+.term,.file a:hover {
+	color: black;
+}
+
+.pkg,.path {
+	font-family: monospace;
+	background: #EFEFEF;
+}