diff --git a/README.md b/README.md index 5ed2579..71a20f0 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,9 @@ Nonetheless, it works pretty well as a static blog generator. Pollen comes with * Ideally you'll be on a system that can run Bash scripts and the GNU `make` utility * If you do use the included makefile to build the site, you will want to install [HTML5 Tidy](http://www.html-tidy.org) — or remove references to the `tidy` command in the makefile. -Then just plop all the files from this repository in a folder. +Next, just plop all the files from this repository in a folder. +Move my `posts` directory out of the way to start writing your own content, e.g. `mv posts posts.example ; make spritz` +Edit `feed.xml.pp`, filling in your own RSS metadata. ## Tinkering diff --git a/about.html.pm b/about.html.pm index 7501f53..e587a6c 100644 --- a/about.html.pm +++ b/about.html.pm @@ -1,4 +1,4 @@ -#lang Pollen +#lang pollen ◊(define-meta title "About The Notepad") diff --git a/makefile b/makefile index 55e2632..4b2cfdb 100644 --- a/makefile +++ b/makefile @@ -116,11 +116,11 @@ spritz: ## Just cleans up LaTeX working folders and Pollen cache rm -rf posts/pollen-latex-work pollen-latex-work; \ raco pollen reset -zap: ## Does a spritz and also deletes all HTML and PDF output - rm -rf posts/pollen-latex-work pollen-latex-work; \ +zap: spritz ## Does a spritz and also deletes all HTML and PDF output rm posts/*.html posts/*.pdf; \ rm feed.xml; \ rm *.html *.pdf; \ + rm -f notepad.sqlite; \ raco pollen reset post: ## Quickly start a new post from template