Today I found that setting is_project_page to true in _config.yml didn't enable the copyright footer. After some investigation it turned out that site.github.is_project_page in default.html was used to load that value in _config.yml, which should have been site.is_project_page. This commit fixes the error.
… in
_config.yml
.Today I found that setting
is_project_page
totrue
in _config.yml didn't enable the copyright footer. After some investigation it turned out thatsite.github.is_project_page
in default.html was used to load that value in _config.yml, which should have beensite.is_project_page
. This commit fixes the error.