From 913c6bed6f7e8ae12b6881584698f29a698431c4 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Mon, 13 Apr 2015 19:48:35 -0400 Subject: builder: Add primitive blog builder. * haunt/builder/blog.scm: New file. * Makefile.am (SOURCES): Add it. --- Makefile.am | 1 + haunt/builder/blog.scm | 81 ++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 82 insertions(+) create mode 100644 haunt/builder/blog.scm 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 +;;; +;;; 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 . + +;;; 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)))) -- cgit v1.2.3