Это означает, что в _layouts/default.html
имеется ссылка на файл, который не существует.
Проверка _layouts/default.html
:
<!DOCTYPE html>
<html>
{% include head.html %}
<body id="page-top" class="index">
{% include nav.html %}
{% include header.html %}
{% include portfolio_grid.html %}
{% include about.html %}
{% if site.contact == "static" %}
{% include contact_static.html %}
{% elsif site.contact == "disqus" %}
{% include contact_disqus.html %}
{% else %}
{% include contact.html %}
{% endif %}
{% include footer.html %}
{% include modals.html %}
{% include js.html %}
</body>
</html>
Все файлы included
должен быть в каталоге _includes
:
Как видите, по крайней мере contact_disqus.html
отсутствует.