I'm having trouble with my code and can't figure out what's going wrong. I can successfully host my website on a local server using Jekyll, but when I try to create a github.io page, I keep getting the following error:
The page build failed with this error message:
The file portfolio/index.html
includes a symlink or references a file that doesn't exist in your _includes
directory. For more details, check out this link.
In addition, I am having issues linking my CSS with HTML on the Github page. Here is the code from my index.html file. The index.html is located in a folder named portfolio, and inside another folder called "_inlcudes" is where about.html resides.
---
---
<!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>