summaryrefslogtreecommitdiff
path: root/website/posts
diff options
context:
space:
mode:
Diffstat (limited to 'website/posts')
-rw-r--r--website/posts/0.1-release.sxml41
-rw-r--r--website/posts/0.2-release.skr38
-rw-r--r--website/posts/0.2.1-release.md24
3 files changed, 0 insertions, 103 deletions
diff --git a/website/posts/0.1-release.sxml b/website/posts/0.1-release.sxml
deleted file mode 100644
index 17d18ca..0000000
--- a/website/posts/0.1-release.sxml
+++ /dev/null
@@ -1,41 +0,0 @@
-;;; -*- scheme -*-
-
-(use-modules (haunt utils))
-
-`((title . "Introducing Haunt")
- (date . ,(string->date* "2015-08-08 10:00"))
- (tags "news" "releases")
- (summary . "Haunt 0.1 released")
- (content
- ((p "I am pleased to announce the first alpha release of Haunt, yet
-another static site generator. Does the world really need another one
-of those? No, but Haunt is special because it is written in Guile
-Scheme, a clean and elegant Lisp dialect, which allows users to
-compose their websites using functional programming techniques. Using
-a general-purpose, extensible programming language to build websites
-allows Haunt users to view their website as not just mere data, but a
-program. Haunt empowers the user to build the abstractions they need
-to make a great static website without getting in the way.")
- (p "At its core, Haunt is a very simple program. To build your
-site, Haunt takes your posts and static assets as input, passes them
-to a series of user-defined building procedures that return one or
-more pages, and outputs all of the generated pages to the file system.
-That's all there is to it. All of the \"good stuff\" is implemented
-in the builder procedures. Haunt 0.1 comes with simple blog and Atom
-feed generators.")
- (p "Naturally, this website is built with Haunt. You can see its
-complete source code in the "
- (code "website") " directory in Haunt's "
- (a (@ (href "https://git.dthompson.us/haunt.git/tree/HEAD:/website"))
- "official git repository")
- ".")
- (p "The Haunt 0.1 release tarball URL can be found on the "
- (a (@ (href "/downloads.html")) "downloads page")
- ".")
- (p "Haunt is built to be as hackable as possible, and patches to
-improve it are very much welcome. In particular, new post readers for
-common formats such as org-mode and Markdown are desired, along with a
-more robust blog builder and theme engine. In lieu of a mailing list,
-patches may be sent to "
- (code "davet") " at " (code "gnu.org") ".")
- (p "Happy haunting!"))))
diff --git a/website/posts/0.2-release.skr b/website/posts/0.2-release.skr
deleted file mode 100644
index d18ff8b..0000000
--- a/website/posts/0.2-release.skr
+++ /dev/null
@@ -1,38 +0,0 @@
-(post
- :title "Haunt 0.2 released"
- :date (make-date* 2016 04 24)
- :tags '("release")
- :summary "Haunt 0.2 released"
-
- (p [I am pleased to announce the release of Haunt version 0.2. This
-release features new readers for the ]
- (anchor "Texinfo" "http://www.gnu.org/software/texinfo/")
- [ and ] (anchor "Skribe" "http://www.nongnu.org/skribilo/")
- [ markup formats, an Info manual, small improvements to the Atom
-and blog builders, and bug fixes.])
-
- (p [New reader modules:]
- (ul (li (code [(haunt reader skribe)]))
- (li (code [(haunt reader texinfo)]))))
-
- (p [Bug fixes:]
- (ul (li (anchor "builder: atom: Allow atom feeds to correctly set the blog prefix."
- "https://git.dthompson.us/haunt.git/commit/ed1602dc36444bcf1023926854a2cb01b5199e7e"))
- (li (anchor "build: Allow building with Guile 2.2."
- "https://git.dthompson.us/haunt.git/commit/5373877f989689209616109b13fd471b2d093b5f"))
- (li (anchor "post: Allow dashes in slugs."
- "https://git.dthompson.us/haunt.git/commit/a37c3cd58525be76705ea930551f3935a232790e"))
- (li (anchor "serve: Catch exceptions when rebuilding site."
- "https://git.dthompson.us/haunt.git/commit/0d67128c3da6413546015fa9092a0017f50d46b9"))))
-
- (p [A special thank you to Christopher Webber and Mathieu Lirzin for
-contributing to this release!])
-
- (p [Source tarball: ]
- (anchor "haunt-0.2.tar.gz"
- "https://files.dthompson.us/haunt/haunt-0.2.tar.gz"))
- (p [GPG signature: ]
- (anchor "haunt-0.2.tar.gz.sig"
- "https://files.dthompson.us/haunt/haunt-0.2.tar.gz.sig"))
-
- (p [Happy haunting!]))
diff --git a/website/posts/0.2.1-release.md b/website/posts/0.2.1-release.md
deleted file mode 100644
index 16f85d8..0000000
--- a/website/posts/0.2.1-release.md
+++ /dev/null
@@ -1,24 +0,0 @@
-title: Haunt 0.2.1 released
-date: 2017-01-23 08:00:00
-tags: release
-summary: Haunt 0.2.1 released
----
-
-I am pleased to announce the release of Haunt version 0.2.1. This
-release features a new reader for the
-[Markdown](http://commonmark.org/) format via
-[guile-commonmark](https://github.com/OrangeShark/guile-commonmark) as
-well as small improvements to the Atom feed generator and
-documentation.
-
-The new Commonmark reader can be found in the `(haunt reader
-commonmark)` module.
-
-Thank you to Erik Edrosa, Ludovic Courtès, and Vladimir Zhbanov for
-contributing to this release.
-
-Source tarball: [haunt-0.2.1.tar.gz](https://files.dthompson.us/haunt/haunt-0.2.1.tar.gz.sig)
-
-GPG signature [haunt-0.2.1.tar.gz.sig](https://files.dthompson.us/haunt/haunt-0.2.1.tar.gz.sig)
-
-Happy haunting!