File tree 2 files changed +8
-3
lines changed
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -30,14 +30,18 @@ Use the included `new_contribs.sh` script:
30
30
31
31
## Building
32
32
33
+ Ensure you have SASS installed. The easiest way to get it is via ` gem ` , the
34
+ Ruby package manager.
35
+
33
36
```
34
- pelican content -s pelicanconf.py
37
+ env SASS_BIN=$HOME/.gem/ruby/*/bin/sass pelican content -s pelicanconf.py
35
38
```
39
+
36
40
### To build the newsletter
37
41
38
42
* Generate the HTML
39
43
```
40
44
TWIR_NEWSLETTER_THEME=1 pelican --delete-output-directory content
41
45
```
42
46
* 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).
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
. ./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
4
5
if [ " $REALLY_DEPLOY " = " 1" ]; then
5
6
rsync -e
" ssh -i $HOME /.ssh/twir_deploy_key" -razvP --delete-after output/
[email protected] :production
6
7
fi
You can’t perform that action at this time.
0 commit comments