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

Commit 9541328

Browse files
committed
initial new stylesheet work
1 parent 25edfed commit 9541328

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+2732
-0
lines changed

website/new-site/contents.html.mu

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
<!DOCTYPE html> <!-- -*- mode: web-mode; engine: ctemplate -*- -->
2+
<html>
3+
<head>
4+
{{> new-site/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+
{{> new-site/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>Included Packages</h2>
38+
<p>
39+
Along with a compiler and basic development environment, Haskell Platform provides
40+
a variety of widely-used packages from <a href="http://hackage.haskell.org/">Hackage</a>, the
41+
Haskell package repository.
42+
</p>
43+
<p>
44+
If you are a library author and would like to see your
45+
package included in Haskell Platform, see the
46+
<a href="https://github.com/haskell/haskell-platform/wiki/AddingPackages">Wiki</a>
47+
for the package proposal procedure.
48+
</p>
49+
50+
<div>
51+
<label for="package-filter">Package name: </label>
52+
<input id="package-filter" placeholder="Filter by package name">
53+
</div>
54+
55+
{{#history}}
56+
<table class="history table">
57+
<thead>
58+
<tr>
59+
<th>&nbsp;</th>
60+
{{#hpReleases}}
61+
<th class="version">{{hpVersion}}</th>
62+
{{/hpReleases}}
63+
</tr>
64+
</thead>
65+
66+
{{#sections}}
67+
<tbody>
68+
<tr class="section-header"><th colspan="{{ncols}}">{{name}}</th></tr>
69+
70+
{{#components}}
71+
<tr class="package">
72+
<td class="package"><a href="{{hackageUrl}}">{{package}}</a></td>
73+
{{#releases}}
74+
<td class="version {{class}}">{{version}}</td>
75+
{{/releases}}
76+
</tr>
77+
{{/components}}
78+
</tbody>
79+
{{/sections}}
80+
</table>
81+
{{/history}}
82+
</div>
83+
</div>
84+
</div>
85+
86+
{{> new-site/footer }}
87+
</body>
88+
</html>

website/new-site/download.html.mu

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<!DOCTYPE html> <!-- -*- mode: web-mode; engine: ctemplate -*- -->
2+
<html>
3+
<head>
4+
{{> new-site/head }}
5+
<link rel="stylesheet" type="text/css" href="stylesheets/download.css">
6+
7+
<meta name="description" content="Haskell Platform is a Haskell distribution with batteries included">
8+
<script src="js/download.js"></script>
9+
<title>Download Haskell Platform</title>
10+
</head>
11+
<body class="page-home">
12+
<div class="wrap">
13+
<div class="template">
14+
{{> new-site/navbar }}
15+
{{> new-site/download-banner.html }}
16+
<!-- do not include the "download options" section -->
17+
{{> new-site/download-os-sections.html }}
18+
</div>
19+
</div>
20+
21+
<!-- a bit of whitespace before the footer -->
22+
<div style="height: 100px;"></div>
23+
24+
{{> new-site/footer }}
25+
</body>
26+
</html>
Lines changed: 17 additions & 0 deletions
Loading
Lines changed: 36 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)