diff options
| -rw-r--r-- | haunt.scm | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -14,7 +14,9 @@ ;;; along with this file. If not, see <http://www.gnu.org/licenses/>. (use-modules (haunt builder assets) + (haunt builder atom) (haunt builder blog) + (haunt builder rss) (haunt site) (website readers wordpress-markdown) (website builders replicant-blog)) @@ -28,4 +30,10 @@ #:posts-directory "markdown" #:readers (list wordpress-markdown-reader) #:builders (list (replicant-blog-website) - (static-directory "static"))) + (static-directory "static") + ;;;;;;;;;;; + ;; Feeds ;; + ;;;;;;;;;;; + (atom-feed) + (atom-feeds-by-tag) + (rss-feed))) |
