diff options
| author | Jakob L. Kreuze <zerodaysfordays@sdf.lonestar.org> | 2019-05-02 10:40:37 -0400 |
|---|---|---|
| committer | Jakob L. Kreuze <zerodaysfordays@sdf.lonestar.org> | 2019-05-02 10:49:11 -0400 |
| commit | 5d4678d7061c38409ea4ab8f5f3d069d5729ce22 (patch) | |
| tree | 58208098f925a3d63c7268fc10c2b4338cafac8a /haunt.scm | |
| parent | f9e38be6c95594e9642e2530e2aa0286cff5a00f (diff) | |
Abstract away the aliases builder
Diffstat (limited to 'haunt.scm')
| -rw-r--r-- | haunt.scm | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -194,8 +194,8 @@ free culture works available under the " ,%cc-by-sa-link " license.") (email . "zerodaysfordays@sdf.lonestar.org")) #:readers (list html-reader-prime) #:builders (list (blog #:theme jakob-theme #:collections %collections) + (article-aliases %aliases) (atom-feed) - (atom-feeds-by-tag) about-page projects-page (static-directory "css") @@ -203,8 +203,3 @@ free culture works available under the " ,%cc-by-sa-link " license.") (static-directory "images") (lambda (site posts) (map (lambda (alist) - (let ((alias (car alist)) - (target (cdr alist))) - (article-alias alias target))) - %aliases)))) - |