From c59344a2ac4c3aa6e53f1d4299e1a29f0568f3a3 Mon Sep 17 00:00:00 2001 From: Nicolas Kuttler Date: Thu, 12 Feb 2015 17:24:03 +0100 Subject: Refactor includes Includes can pass variables after all. The template language is beginning to feel clumsy. --- _layouts/home.html | 3 +-- _layouts/post.html | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) (limited to '_layouts') diff --git a/_layouts/home.html b/_layouts/home.html index e0e2187..81451b6 100644 --- a/_layouts/home.html +++ b/_layouts/home.html @@ -6,8 +6,7 @@ layout: default {% for post in paginator.posts %}

{{ post.title }}

- {% assign node=post %} - {% include postmeta.html %} + {% include postmeta.html node=post %} {{ post.content | markdownify }} {% endfor %} diff --git a/_layouts/post.html b/_layouts/post.html index d6b9678..5cf11df 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -3,6 +3,5 @@ layout: default ---

{{ page.title }}

-{% assign node=page %} -{% include postmeta.html %} +{% include postmeta.html node=page %} {{ page.content | markdownify }} -- cgit v1.2.3