Skip to content
This repository was archived by the owner on Feb 3, 2022. It is now read-only.

Commit b1d035e

Browse files
committed
Add prior releases page.
1 parent f06228b commit b1d035e

File tree

2 files changed

+57
-0
lines changed

2 files changed

+57
-0
lines changed

website/plan-a/prior.html.mu

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
<!DOCTYPE html> <!-- -*- mode: web-mode; engine: ctemplate -*- -->
2+
<html>
3+
<head>
4+
{{> plan-a/head }}
5+
<link rel="stylesheet" type="text/css" href="stylesheets/contents.css">
6+
7+
<meta name="description" content="Haskell Platform is a Haskell distribution with batteries included">
8+
<script src="js/contents.js"></script>
9+
<title>Haskell Platform - Included Packages</title>
10+
</head>
11+
<body class="page-home">
12+
<div class="wrap">
13+
<div class="template">
14+
{{> plan-a/navbar }}
15+
16+
<div class="header">
17+
<div class="container">
18+
<div class="row">
19+
<div class="span12 col-md-12">
20+
<div class="branding">
21+
<span style="background-image: url(img/logo.png)" class="name">Haskell Platform</span>
22+
<span class="summary">
23+
Haskell with batteries included
24+
</span>
25+
</div>
26+
</div>
27+
<div class="span6 col-md-6">
28+
<div class="branding">
29+
<span class="tag"></span>
30+
</div>
31+
</div>
32+
</div>
33+
</div>
34+
</div>
35+
36+
<div class="container">
37+
<h2>Prior Releases</h2>
38+
39+
{{#years}}
40+
<h3 id="section">{{year}}</h3>
41+
{{#releases}}
42+
<p><strong>{{version}}</strong>, {{month}} {{year}} ⟹
43+
{{#files}}
44+
<a href="{{url}}" onClick="javascript: pageTracker._trackPageview('/downloads/mac/old'); ">{{osNameAndArch}}</a>{{^last}} - {{/last}}
45+
{{/files}}
46+
</p>
47+
{{/releases}}
48+
{{/years}}
49+
50+
</div>
51+
</div>
52+
</div>
53+
54+
{{> plan-a/footer }}
55+
</body>
56+
</html>

website/templates/plan-a/download-banner.html.mu

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
</ul>
2727
</span>
2828
</div>
29+
<a href="prior.html">Prior releases</a> of the Platform are also available.
2930
</div>
3031
</div>
3132
</div>

0 commit comments

Comments
 (0)