Skip to content

Commit

Permalink
Merge branch 'skypher-master'
Browse files Browse the repository at this point in the history
  • Loading branch information
otherjoel committed Jan 27, 2019
2 parents 4bd1561 + d101b68 commit 29ece25
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion about.html.pm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#lang Pollen
#lang pollen

◊(define-meta title "About The Notepad")

Expand Down
4 changes: 2 additions & 2 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 29ece25

Please sign in to comment.