diff options
Diffstat (limited to '_posts')
| -rw-r--r-- | _posts/2014-10-27-learned-how-to-jekyll-the-projects-page.markdown | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/_posts/2014-10-27-learned-how-to-jekyll-the-projects-page.markdown b/_posts/2014-10-27-learned-how-to-jekyll-the-projects-page.markdown new file mode 100644 index 0000000..121b569 --- /dev/null +++ b/_posts/2014-10-27-learned-how-to-jekyll-the-projects-page.markdown @@ -0,0 +1,11 @@ +--- +layout: post +title: "Learned how to jekyll: the projects page" +date: "2014-10-27" +--- + +After a quick question in the Jekyll IRC chat room i was told to use the _data folder instead of using the main site config. The main site config is only read on startup while the data you store under the \_data folder is watched. + +You can create a `filename.yml` file in the \_data folder and it will then be accessible in liquid and any ruby plugins you might have as `site.data['filename']` + +Now my projects page is fully automated to complement my automatic deployment system. |
