summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2015-04-13 19:48:35 -0400
committerDavid Thompson <dthompson2@worcester.edu>2015-04-13 19:50:06 -0400
commit913c6bed6f7e8ae12b6881584698f29a698431c4 (patch)
treeac37d520a4cc0ad0ee5398022af5a7157bd5f83a
parent3592829387367d54dcc4dc1c5cd4862586cc705d (diff)
builder: Add primitive blog builder.
* haunt/builder/blog.scm: New file. * Makefile.am (SOURCES): Add it.
-rw-r--r--Makefile.am1
-rw-r--r--haunt/builder/blog.scm81
2 files changed, 82 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am
index d585ee5..44b107e 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -48,6 +48,7 @@ SOURCES = \
haunt/site.scm \
haunt/build/html.scm \
haunt/builder/atom.scm \
+ haunt/builder/blog.scm \
haunt/ui.scm \
haunt/ui/build.scm \
haunt/ui/serve.scm \
diff --git a/haunt/builder/blog.scm b/haunt/builder/blog.scm
new file mode 100644
index 0000000..1e96b9c
--- /dev/null
+++ b/haunt/builder/blog.scm
@@ -0,0 +1,81 @@
+;;; Haunt --- Static site generator for GNU Guile
+;;; Copyright © 2015 David Thompson <davet@gnu.org>
+;;;
+;;; This file is part of Haunt.
+;;;
+;;; Haunt is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or
+;;; (at your option) any later version.
+;;;
+;;; Haunt is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+;;; General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with Haunt. If not, see <http://www.gnu.org/licenses/>.
+
+;;; Commentary:
+;;
+;; Page builders
+;;
+;;; Code:
+
+(define-module (haunt builder blog)
+ #:use-module (srfi srfi-19)
+ #:use-module (haunt site)
+ #:use-module (haunt post)
+ #:use-module (haunt page)
+ #:use-module (haunt utils)
+ #:use-module (haunt build html)
+ #:export (blog))
+
+(define (ugly-theme site post)
+ "Render POST on SITE with an unstyled, barebones theme."
+ `((doctype "html")
+ (head
+ (title ,(string-append (post-ref post 'title)
+ " — "
+ (site-title site))))
+ (body
+ (h1 ,(post-ref post 'title))
+ (h3 ,(post-ref post 'author))
+ (div ,(post-sxml post)))))
+
+(define* (blog #:key (theme ugly-theme) prefix)
+ "Return a procedure that transforms a list of posts into pages
+decorated by THEME, whose URLs start with PREFIX."
+ (define (make-file-name base-name)
+ (if prefix
+ (string-append prefix "/" base-name)
+ base-name))
+
+ (define (post-uri post)
+ (string-append "/" (or prefix "") (post-slug post) ".html"))
+
+ (define (post->recent-post-entry post)
+ `(li
+ (a (@ (href ,(post-uri post)))
+ ,(post-ref post 'title))))
+
+ (lambda (site posts)
+ (define (post->page post)
+ (let ((base-name (string-append (post-slug post) ".html")))
+ (make-page (make-file-name base-name)
+ (theme site post)
+ sxml->html)))
+
+ (define index-page
+ (make-page (make-file-name "index.html")
+ `((doctype "html")
+ (head
+ (title ,(site-title site)))
+ (body
+ (h1 ,(site-title site))
+ (h3 "Recent Posts")
+ (ul ,@(map post->recent-post-entry
+ (posts/reverse-chronological posts)))))
+ sxml->html))
+
+ (cons index-page (map post->page posts))))