【发布时间】:2021-02-23 18:54:29
【问题描述】:
我正在使用带有 bulma-clean-theme 的 github 页面,当我在本地渲染我的页面时,它显示得很好并且没有问题。但是,当我在 github 上查看我的网站上的博客文章时,我看到网站上的内容重复了!
这是最有可能导致此结果的区域,我从主题更改为 pages.html。
<div class="content">
<h2><a href="{{ page.url }}">{{ page.title }}</a></h2>
<div class="meta"><i class="fa fa-calendar" aria-hidden="true"></i> Published {{ page.date | date: '%B %d, %Y' }} by
<i class="fa fa-user" aria-hidden="true"></i> FoxDeploy
<i class="fa fa-hourglass" aria-hidden="true"></i> <i>{{ content | reading_time_as_s }} average reading time</i>
</div>
<a href="{{ post.url }}"><img src="{{ post.header }}{{ post.coverImage }}"></a><br>
{{ content }}
</div>
【问题讨论】: