54 lines
2.1 KiB
Django/Jinja
54 lines
2.1 KiB
Django/Jinja
{% from "footer.html.j2" import footer %}
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
|
|
"http://www.w3.org/TR/1998/REC-html40-19980424/loose.dtd">
|
|
<html lang="en">
|
|
<head>
|
|
<title>Computers: Wes' Retro Site</title>
|
|
<link rel="stylesheet" href="basics.css" type="text/css">
|
|
<meta name="viewport" content="width=640, initial-scale=1">
|
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" >
|
|
</head>
|
|
<body bgcolor="#f9f9f9">
|
|
<basefont face="sans-serif" size="3">
|
|
<table width="640" align="center">
|
|
<tr valign="middle">
|
|
<td width="70%" height="75">
|
|
<h1>
|
|
<img src="mac.gif" class="pixelate" alt="Mac icon" width="32" height="32">
|
|
Computers
|
|
</h1>
|
|
</td>
|
|
{% include 'nav.html.j2' %}
|
|
</tr>
|
|
<tr>
|
|
<td colspan="3">
|
|
<p>
|
|
As this site surely suggests I've been on a bit of retro computing kick the last
|
|
couple of years. This is strongly fueled by nostalgia for early Macintosh computers
|
|
and Mac OS that I grew up using. Whilst it was inferior to other systems in regards
|
|
to stability the capability, conventions, and consistency of the user interface were
|
|
second to none. Perhaps more so than any system that has come since, with the possible
|
|
exception of BeOS/Haiku.
|
|
</p>
|
|
|
|
<p>
|
|
The goal is <i>not</i> to amass a vintage computer collection… and yet I currently
|
|
have the following in my possession. More details to come.
|
|
</p>
|
|
|
|
<ul>
|
|
<li>Original Macintosh upgrade to 512e</li>
|
|
<li>LC475</li>
|
|
<li>PowerMac 9500</li>
|
|
<li>Via C3 Mini-ITX system</li>
|
|
<li>AMD Opteron (1st generation x86-64) build in progress</li>
|
|
<li>Power Mac G5</li>
|
|
<li>Mac Pro × 2</li>
|
|
</ul>
|
|
|
|
{{ footer(generated, 0) }}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|