summaryrefslogtreecommitdiff
path: root/_posts
diff options
context:
space:
mode:
authorDennis Brentjes <d.brentjes@gmail.com>2014-10-26 21:14:07 +0100
committerDennis Brentjes <d.brentjes@gmail.com>2014-10-26 21:14:07 +0100
commitaee212c634c7c67a65e2bd76646559027e5aa9df (patch)
treeb7a79ba476500f70332e6e928b62c8185092162a /_posts
parent860b6b1dbe5a28b39b1f7ec56c3754b7b48d699a (diff)
downloadbrentj.es-aee212c634c7c67a65e2bd76646559027e5aa9df.tar.gz
brentj.es-aee212c634c7c67a65e2bd76646559027e5aa9df.tar.bz2
brentj.es-aee212c634c7c67a65e2bd76646559027e5aa9df.zip
Some minor improvements to the site.
Diffstat (limited to '_posts')
-rw-r--r--_posts/2014-10-26-learning-how-to-jekyll.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/_posts/2014-10-26-learning-how-to-jekyll.markdown b/_posts/2014-10-26-learning-how-to-jekyll.markdown
index a76cb0e..b6ca449 100644
--- a/_posts/2014-10-26-learning-how-to-jekyll.markdown
+++ b/_posts/2014-10-26-learning-how-to-jekyll.markdown
@@ -8,7 +8,7 @@ So I wanted to create a better projects page. One that generates itself and gene
I first was a bit put off by the prospect of diving into ruby. But I really wanted a way to generate new project pages based on content and not handcraft each page. I also wanted to use markdown for this because It would then be similar to the posts.
-So first I define a list of associative arrays in my main config that define my projects. These associative arrays contain a name, a markdown file and a thumbnail to be used on the main projects page. This is all information I need to add in the config.
+So first I define a list of associative arrays in my main config that define my projects. These associative arrays contain a name, a markdown file and a thumbnail to be used on the main projects page. This is all information that I need to add in the config.
But then I need to generate the project page itself. This is where the Jekyll plug-in system comes into play. This is my project page generator.
@@ -80,4 +80,4 @@ end
Liquid::Template.register_tag('include_project', Jekyll::InputProjectTag)
```
-The only downside of this is that with jekyll --watch new projects will not appear on the webpage, It seems the global config file is not watched, or maybe its something entirely different. I will look into this later down the line but for now I just wanted to share these modules.
+The only downside of this is that with Jekyll --watch new projects will not appear on the web page, It seems the global config file is not watched, or maybe its something entirely different. I will look into this later down the line but for now I just wanted to share these modules.