summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2014-09-22 23:15:04 +0200
committerNatanael Copa <ncopa@alpinelinux.org>2014-09-22 23:15:04 +0200
commitea662fa97b848213e90d36b77a6f3940bafe57cd (patch)
treea51347e9c8c2fc31f765c4c48b10eedfe909f551
parent303094b21661dcf61e39521872cd7a619ed148e0 (diff)
downloadalpine-mksite-ea662fa97b848213e90d36b77a6f3940bafe57cd.tar.bz2
alpine-mksite-ea662fa97b848213e90d36b77a6f3940bafe57cd.tar.xz
downloads: initial content
Just for demo
-rw-r--r--Makefile1
-rw-r--r--downloads/index.md23
2 files changed, 23 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 35e05e0..3ad6b75 100644
--- a/Makefile
+++ b/Makefile
@@ -11,6 +11,7 @@ git_atom_url := http://git.alpinelinux.org/cgit/aports/atom
all: $(pages) $(static_out)
$(out)/index.html: release.yaml git-commits.yaml
+$(out)/downloads/index.html: latest-releases.yaml
$(out)/%.html: %.md _default.template.html
mkdir -p $(dir $@)
diff --git a/downloads/index.md b/downloads/index.md
index 9998482..fc4ded8 100644
--- a/downloads/index.md
+++ b/downloads/index.md
@@ -1,7 +1,28 @@
---
title: Downloads
---
+
Downloads
=========
-
+<table>
+<tr>
+ <th>flavor</th>
+ <th>arch</th>
+ <th>iso</th>
+ <th>date</th>
+ <th>size</th>
+ <th>checksum</th>
+</tr>
+{{#latest-releases}}
+<tr>
+ <td>{{flavor}}</td>
+ <td>{{arch}}</td>
+ <td>{{iso}}</td>
+ <td>{{date}}</td>
+ <td>{{size}}</td>
+ <td><a href="{{iso}}.sha1" title="{{sha1}}">sha1</a>
+ | <a href="{{iso}}.sha256" title="{{sha256}}">sha256</a></td>
+</tr>
+{{/latest-releases}}
+</table>