diff --git a/_config.yml b/_config.yml index 2629d71..f575d73 100644 --- a/_config.yml +++ b/_config.yml @@ -6,8 +6,6 @@ permalink: /:year/:month/:day/:basename:output_ext collections: filters: output: true - objects: - output: true tags: output: true exclude: @@ -22,12 +20,6 @@ defaults: type: "filters" values: layout: "default" - - - scope: - path: "" - type: "objects" - values: - layout: "default" - scope: path: "" diff --git a/_objects/join.md b/_objects/join.md deleted file mode 100644 index c74c1b9..0000000 --- a/_objects/join.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -title: join ---- - -`join` joins the elements of an array, using the character you provide. - -| Code | Output | -|-------------------------------------------------------:|:-------------------| -| {% raw %}`{{ product.tags | join: ', ' }}`{% endraw %} | `"sale, mens, womens, awesome` | - -In the sample above, assume that `product.tags` resolves to: `["sale", "mens", "womens", "awesome"]`. diff --git a/_objects/last.md b/_objects/last.md deleted file mode 100644 index 1a311b0..0000000 --- a/_objects/last.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -title: last ---- - -Return the last element of an array. - -| Code | Output | -|-------------------------------------------------------:|:-------------------| -| {% raw %}`{{ product.tags | last }}`{% endraw %} | `"awesome"` | - -In the sample above, assume that `product.tags` resolves to: `["sale", "mens", "womens", "awesome"]`. diff --git a/_objects/lstrip.md b/_objects/lstrip.md deleted file mode 100644 index 3ab4fc0..0000000 --- a/_objects/lstrip.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: lstrip ---- - -Strips all whitespace (tabs, spaces, and newlines) from the left side of a string. - -| Code | Output | -|-------------------------------------------------------:|:-------------------| -| {% raw %}`{{ ' too many spaces ' | lstrip }}`{% endraw %} | `"too many spaces "` | diff --git a/_sass/modules/_buttons.scss b/_sass/modules/_buttons.scss index f6b4f3f..c26460d 100644 --- a/_sass/modules/_buttons.scss +++ b/_sass/modules/_buttons.scss @@ -20,6 +20,7 @@ .btn-row { display: flex; justify-content: center; + margin-bottom: 0; .btn:not(:first-child) { margin-left: $spacing-unit / 2; diff --git a/_sass/modules/_home-banner.scss b/_sass/modules/_home-banner.scss index 71c7c1a..fcaddf8 100644 --- a/_sass/modules/_home-banner.scss +++ b/_sass/modules/_home-banner.scss @@ -1,5 +1,8 @@ .home--banner { text-align: center; + border-bottom: 1px solid lighten($color-slate, 50%); + padding-bottom: $spacing-unit; + margin-bottom: $spacing-unit; h1 { font-weight: bold; diff --git a/index.html b/index.html index e910a20..81d9e91 100644 --- a/index.html +++ b/index.html @@ -8,13 +8,11 @@ layout: default
Ruby library for rendering safe templates which cannot affect the security of the server they are rendered on.
- Download - View on Github + Download + View on Github
-Liquid is an extraction from the e-commerce system Shopify. Shopify powers many thousands of e-commerce stores which all call for unique designs. For this we developed Liquid which allows our customers complete design freedom while maintaining the integrity of our servers.
Liquid has been in production use since June 2006 and is now used by many other hosted web applications.