我正在使用jekyll构建图片库http://comics.daozhang.info,但是当我尝试实施下一页和上一页时,它无法访问page.next.url
或page.previous.url
。但是,page.next.title
可用。我不是page.next
或page.previous
模板参数吗?
我不确定为什么会这样。你们能给我一些建议吗?非常感谢。
源代码:
<div class="pin-view-arrows">
{% if page.previous %}
<a style="visibility: visible; position: fixed; right: 0px;" class="next x layer-view" href="{{ page.next.url }}">{{page.previous.title}}</a>
{% endif %}
{% if page.next %}
<a style="visibility: visible; position: fixed; left: 0px;" class="prev x layer-view" href="{{ page.previous.url }}">{{page.next.title}}</a>
{% endif %}
生成后:
<a style="visibility: visible; position: fixed; left: 0px;" class="prev x layer-view" href="">Bone antennas</a>
答案 0 :(得分:0)