I have a jekyll site with this structure:
▾ _includes/ post-entry.html ▾ _posts/ 2012-11-25-first-post.markdown index.markdown
In my index.markdown, I want to include post-entry.html as follows:
{% for post in site.posts %} * {% include post-entry.html %} {% endfor %}
But it looks like a piece of HTML code on a blog. How can i prevent the html code? protected?
SiddharthaRT
source share