私のコードに何が問題なのか分かりません。私はJekyllを使用してローカルサーバー上で自分のWebサイトをホストすることができます。しかし、私は次のエラーを取得していますgithub.ioページを作成しようとすると:ジキルがGithub.ioに表示されない
ビルドには、次のエラーで失敗しましたページ:ファイルがシンボリックリンクであることをportfolio/index.html
に含まれていたか、存在しません
あなたの_includes
ディレクトリにあります。詳細については、https://help.github.com/articles/page-build-failed-file-is-a-symlinkを参照してください。
また、GithubページのCSSとHTMLをリンクしようとすると、うまくいきません。ここで私が働いているindex.htmlです。 index.htmlをポートフォリオという名前のフォルダ内にあり、「_inlcudes」という名前の別のフォルダ内にabout.htmlがあなたGitHubのレポのための「設定」ページで
---
---
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/assets/css/input.css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="functions.js"></script>
</head>
<body>
<div>
{% include header.html %}
</div>
<div>
{%include about.html %}
</div>
<div>
{%include technology.html %}
</div>
<div>
{% include footer.html %}
</div>
<div>
{% include technical-projects.html %}}
</div>
</body>
</html>