Closed robotAstray closed 2 months ago
@taikii let me know your thoughts on this. Thank you.
@robotAstray Thank you for your PR. Sorry for the late reply. I would like to merge your PR, but I don't want to change the text color. Could you please revert style.css file change?
@taikii yes of course! I changed it for my work and forgot to change it back. I will fix that now.
Thank you for your great job! I have merged it.
Description:
While using the Whiteplain Hugo theme, I encountered an error related to the deprecated
DisqusShortname
. This error prevents the Hugo site from building correctly.Steps to Reproduce:
Create a Hugo site using the Whiteplain theme.
Run the following command:
The site fails to build, and the following error message is seen.
Error:
Expected Behavior:
The site should build successfully without any errors. The theme should use the updated property
.Site.Config.Services.Disqus.Shortname
instead of the deprecated.Site.DisqusShortname
.Environment:
Proposed Solution:
Replace the deprecated
.Site.DisqusShortname
with.Site.Config.Services.Disqus.Shortname
in thelayouts/_default/single.html
file.Additional Context:
I have opened a PR to address this issue: #34