Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/skypher/thenotepad into s…
Browse files Browse the repository at this point in the history
…kypher-master
  • Loading branch information
otherjoel committed Jan 27, 2019
2 parents 4bd1561 + b8808cd commit b144f04
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 @@ -114,10 +114,10 @@ publish: ## Rsync the website to the public web server (does not rebuild site fi
# ‘make zap’ deletes all output files as well.
spritz: ## Just cleans up LaTeX working folders and Pollen cache
rm -rf posts/pollen-latex-work pollen-latex-work; \
rm -f notepad.sqlite; \
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; \
Expand Down

0 comments on commit b144f04

Please sign in to comment.