diff --git a/_config.yml b/_config.yml index 4f02ad09..1e275b9e 100644 --- a/_config.yml +++ b/_config.yml @@ -6,7 +6,7 @@ baseurl: "" # the subpath of your site, e.g. /blog/ url: http://liquidmarkup.org # the base hostname & protocol for your site markdown: kramdown highlighter: pygments -permalink: /:year/:month/:day/:basename:output_ext +permalink: pretty exclude: - README.md - CNAME @@ -19,15 +19,3 @@ defaults: path: "" # an empty string here means all files in the project values: layout: "default" - - scope: - path: "basics" - values: - type: "basics" - - scope: - path: "filters" - values: - type: "filters" - - scope: - path: "tags" - values: - type: "tags" diff --git a/_includes/sidebar.html b/_includes/sidebar.html new file mode 100644 index 00000000..bd262e1e --- /dev/null +++ b/_includes/sidebar.html @@ -0,0 +1,28 @@ + diff --git a/_layouts/default.html b/_layouts/default.html index 1c507a14..41cf3522 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -16,68 +16,7 @@ - + {% include sidebar.html %}
diff --git a/basics/truthy-and-falsy.md b/basics/truthy-and-falsy.md index dddee83a..8b75b834 100644 --- a/basics/truthy-and-falsy.md +++ b/basics/truthy-and-falsy.md @@ -1,5 +1,5 @@ --- -title: Truthy and Falsy +title: Truthy and falsy --- In programming, anything that returns `true` in a conditional is called **truthy**. Anything that returns `false` in a conditional is called **falsy**. All object types can be described as either truthy or falsy. diff --git a/tags/control.flow.md b/tags/control.flow.md index 881df7df..cb8fcadb 100644 --- a/tags/control.flow.md +++ b/tags/control.flow.md @@ -1,8 +1,7 @@ --- +title: Control flow --- -TAGS! - ## case/when

Creates a switch statement to compare a variable with different values. case initializes the switch statement, and when compares its values.