+ {{ post_title }}
+
+ By {{ post.author }} on {{ post.date | date: "%B %d, %Y" }}
+
+
+ {{ post.content }}
+
+ {% if post.tags.size > 0 %}
+
+ Tags:
+ {% for tag in post.tags %}
+ {{ tag }}
+ {% endfor %}
+
+ {% endif %}
+
+{% endblock %}
+
+{% block scripts %}
+
+{% endblock %}''',
+
+ // Actual blog post using post layout
+ 'posts/hello-world.liquid': '''
+{% assign post_title = "Hello, World!" %}
+{% layout "layouts/post.liquid", post_title: post_title, year: year %}
+{%- block header -%}
+