ignore excerpt_separator in index.html

This commit is contained in:
Dean Attali 2016-10-04 19:36:39 -07:00 committed by GitHub
parent 44768abb55
commit 1b550134f1
1 changed files with 7 additions and 12 deletions

View File

@ -22,19 +22,14 @@ subtitle: This is where I will tell my friends way too much about me
</p> </p>
<div class="post-entry"> <div class="post-entry">
{% if post.content contains site.excerpt_separator %} {% assign cleaned_content = post.content | strip_html | xml_escape %}
{{ post.excerpt | strip_html | xml_escape }} {% assign truncated_content = cleaned_content | truncatewords: 50 %}
<a href="{{ post.url | prepend: site.baseurl }}" class="post-read-more">[Read&nbsp;More]</a> {% if truncated_content == cleaned_content %}
{{ cleaned_content }}
{% else %} {% else %}
{% assign cleaned_content = post.content | strip_html | xml_escape %} {{ truncated_content }}
{% assign truncated_content = cleaned_content | truncatewords: 50 %} <a href="{{ post.url | prepend: site.baseurl }}" class="post-read-more">[Read&nbsp;More]</a>
{% if truncated_content == cleaned_content %} {% endif%}
{{ cleaned_content }}
{% else %}
{{ truncated_content }}
<a href="{{ post.url | prepend: site.baseurl }}" class="post-read-more">[Read&nbsp;More]</a>
{% endif%}
{% endif %}
</div> </div>
{% if post.tags.size > 0 %} {% if post.tags.size > 0 %}