Hi I'm new to Jekyll and liquid tags (but not HAML). With this plugin, I can pull in a basic haml partial using
My problem:
The default Jekyll index page fails to compile when I try to convert index.html to index.haml. How should it be written? This is what I have...
%div#home
%h1 Blog Posts
.posts
{% for post in site.posts %}
%li
%span {{ post.date | date_to_string }}
»
%a{:href => "{{ post.url }}"}
{{ post.title }}
{% endfor %}
What am I missing? Thanks!
Hi I'm new to Jekyll and liquid tags (but not HAML). With this plugin, I can pull in a basic haml partial using
{% haml footer.hml %}My problem:
The default Jekyll index page fails to compile when I try to convert index.html to index.haml. How should it be written? This is what I have...
What am I missing? Thanks!