如何显示信息的预览? (使用Jekyll Bootstrap主题)

前端之家收集整理的这篇文章主要介绍了如何显示信息的预览? (使用Jekyll Bootstrap主题)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这可能是一个容易的问题,但如何在默认页面显示我的帖子的预览?我使用Jekyll Bootstrap主题汤姆。

解决方法

通过功能 here,我找到strip_html和truncatewords。

这里有一个样例“帖子列表”与75字的预览文本。

<ul >
    {% for post in site.posts limit 4 %}
    <li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ BASE_PATH }}{{ post.url }}">{{ post.title }}</a></li>
        {{ post.content | strip_html | truncatewords:75}}<br>
            <a href="{{ post.url }}">Read more...</a><br><br>
    {% endfor %}
</ul>
原文链接:https://www.f2er.com/bootstrap/234601.html

猜你在找的Bootstrap相关文章