Closed jomei closed 4 years ago
You could fork the repo and add your own Read More
button.
You need to modify _layout/home.html: 53
, for example as follows:
<div class="post">
{%- if site.show_excerpts -%}
{{ post.excerpt }}
{%- endif -%}
<a class="read-more-link" href="{{ post.url | relative_url }}">Read More</a>
</div>
and _sass/plain.scss
as follows
.post {
.read-more-link {
font-family: Raleway, sans-serif;
margin-bottom: 1em;
}
p {
margin-bottom: 0.25rem;
}
}
Thank you, @DotIN13 It's a good solution =)
Hi! Currently on the posts page it's not obvious that an excerpt is not a full post. I think it would be nice to have some way to add some kind of "read more" link with custom text.