summaryrefslogtreecommitdiff
path: root/_posts/2014-04-27-Building-your-first-jekyll-site.markdown
diff options
context:
space:
mode:
authorDennis Brentjes <d.brentjes@gmail.com>2014-04-28 13:12:08 +0200
committerDennis Brentjes <d.brentjes@gmail.com>2014-04-28 13:12:08 +0200
commite7ff734055b59369282945460c80e3777ad18ffc (patch)
tree75e7b6612afc50a4376278c74f86343c36f2ce75 /_posts/2014-04-27-Building-your-first-jekyll-site.markdown
parent92f886b9a9f53a94e66ef335b9dcb3a248324c1b (diff)
downloadbrentj.es-e7ff734055b59369282945460c80e3777ad18ffc.tar.gz
brentj.es-e7ff734055b59369282945460c80e3777ad18ffc.tar.bz2
brentj.es-e7ff734055b59369282945460c80e3777ad18ffc.zip
Renamed the post to reflect it's title
Diffstat (limited to '_posts/2014-04-27-Building-your-first-jekyll-site.markdown')
-rw-r--r--_posts/2014-04-27-Building-your-first-jekyll-site.markdown14
1 files changed, 14 insertions, 0 deletions
diff --git a/_posts/2014-04-27-Building-your-first-jekyll-site.markdown b/_posts/2014-04-27-Building-your-first-jekyll-site.markdown
new file mode 100644
index 0000000..1113b26
--- /dev/null
+++ b/_posts/2014-04-27-Building-your-first-jekyll-site.markdown
@@ -0,0 +1,14 @@
+---
+layout: post
+title: "Setting up a website."
+date: 2014-04-27 13:00:09
+---
+
+While a like to see myself as a seasoned programmer, I had never set up a site on my own. I never had known where to start. So I began serching for easy to use frameworks to get me settled and when you want to include a blog of some sorts you kinda bump into either wordpress or jekyll. I figured that setting up wordpress can be quite a hassle. Not that fear setting up a database, but it seems so overkill for what I wanted. So The reason why I chose for jekyll is it simplicity.
+
+In a nutshell jekyll compiles a static site using a folder structure and configuration files. The default structure is exansive enough to give you an idea how it works, but it far more powerfull than the default generated site lets on. For instance the header and footer are hardcoded in the default layout. These header (and footer) can be specified in seperate files located in the "_include" directory and included in the layout with "{% raw %}{% include header.html %}{% endraw %}". So this enables you to reuse pieces of html layout in any of your layouts.
+
+I'm not going to explain the whole jekyll framework, simply because I do not have enough knowledge of jekyll to do so. I do however wanted to make my first post as soon as possible to see how jekyll works and to keep working on improving my site. If I sparked your interest do checkout the [Jekyll docs][jekyll] or their [github page][jekyll-gh].
+
+[jekyll-gh]: https://github.com/mojombo/jekyll
+[jekyll]: http://jekyllrb.com