对不起,我是Jekyll的新手。我在https://github.com/daattali/beautiful-jekyll
使用了美丽的杰基尔主题在导航栏上,关于我"关于我"和"联系"重定向到404.html页面。
在_config.yml中,我看到以下内容
@Override
protected void onMouseDown(MouseButton button,
KeyModifier keyModifier,
int mouseX,
int mouseY) {
try {
if (MouseButton.LEFT.equals(button)) {
FeatureWrapper closestStationOrSpanFw = SelectionUtil.getClosestSpanOrStation(toMapPoint(mouseX, mouseY));
if (closestStationOrSpanFw != null) {
IGeometry shape = closestStationOrSpanFw.getIFeature().getShapeCopy();
IPoint point = null;
if (shape instanceof IPoint) {
point = (IPoint) shape;
double lat = point.getY();
double lon = point.getX();
....
在我的根目录中,我看到 about.md 和 contact.md
about.md
# List of links in the navigation bar
navbar-links:
Home: ""
About Me: "about"
Contact: "contact"
contact.md
---
layout: page
title: About
---
# Hello World
我应该在这里解决什么?
答案 0 :(得分:1)
您肯定使用位于github.com/UserName/RepositoryName
的项目资源库,在UserName.github.io/RepositoryName
投放。
在_config.yml
中,您需要设置baseurl: /RepositoryName
。