我使用nanoc在github上编写静态网页。一切都很好。 除了图像不是他们的缩略图是可见的。 URL路径缺少项目名称。因此,当我点击图片标题时,我会被重定向到:
https://<username>.github.io/assets/images/test.jpg
而不是:
https://<username>.github.io/<project_name>/assets/images/test.jpg
html源代码如下:
<a target="_blank" href="/assets/images/test.jpg">
<img src="/assets/images/test.jpg" alt="test" width="500" height="400">
</a>
通过此设置,它可以在我的本地计算机上运行。因此,通过'nanoc view',可以在localhost中看到带有图像的页面。 文件结构不包含项目名称,那么部署环境如何将项目名称添加到路径中?
菜单中的链接也是如此。当我点击链接时,我会被重定向到
https://<username>.github.io/about
而不是:
https://<username>.github.io/<projectname>/about/
感谢所有人提前!