Skip to content

Commit 8574d10

Browse files
committed
Update README with Sass, add pip install to run.sh
1 parent 5abe06e commit 8574d10

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

README.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,18 @@ Use the included `new_contribs.sh` script:
3030

3131
## Building
3232

33+
Ensure you have SASS installed. The easiest way to get it is via `gem`, the
34+
Ruby package manager.
35+
3336
```
34-
pelican content -s pelicanconf.py
37+
env SASS_BIN=$HOME/.gem/ruby/*/bin/sass pelican content -s pelicanconf.py
3538
```
39+
3640
### To build the newsletter
3741

3842
* Generate the HTML
3943
```
4044
TWIR_NEWSLETTER_THEME=1 pelican --delete-output-directory content
4145
```
4246
* Copy the HTML and inline CSS at http://zurb.com/ink/inliner.php - (MailChimp's inliner doesn't remove the CSS from `<head>`).
43-
* Send the newsletter (we currently use MailChimp).
47+
* Send the newsletter (we currently use MailChimp).

run.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/bin/sh
22
. ./bin/activate
3-
./bin/pelican content -s pelicanconf.py -t themes/pelican-elegant-1.3 || exit
3+
pip2 install -r requirements.txt
4+
./bin/pelican content -s pelicanconf.py || exit
45
if [ "$REALLY_DEPLOY" = "1" ]; then
56
rsync -e "ssh -i $HOME/.ssh/twir_deploy_key" -razvP --delete-after output/ [email protected]:production
67
fi

0 commit comments

Comments
 (0)