Hello. I have recently made a blog with the Kube Theme. I’m trying to optimize the seo and things like that, but I’m having troubles. I’ve looked at other themes as well and Kube’s SEO is super weird compared to others.
Here is the repo of my website, please tell me what I could do. Thank you!
What do you in practical terms mean when you say “SEO”? What is it you want to change?
For me SEO is good quality content, clean and valid HTML and some minimal set of meta tags. Your theme seems to do a good job in this regard and the content is up to you.
The theme looks perfectly fine to me, not “weird” at all. What is it you do not understand?
And if you do not like it, why not switch to another?
My exact problem is with the images.
When I try to add a picture/thumbnail (however you want to call it) to an article, like this: https://prnt.sc/olet1u
This happens:
Thank you for your quick response. I found where I should’ve put the image for the index. It was an index.md file. The file structure of this theme is weird.
You may avoid these problems by switching to Staticman, which makes use of GitHub/GitLab Pull/Merge Requests instead of issues. Under Staticman’s model, static comments are YML/JSON files stored in the remote GitHub/GitLab repo (usually under data/comments, configurable through the path parameter in root-level staticman.yml), and through a static blog generator (Jekyll/Hugo/etc), the stored data are rendered as part of the content by
{{ .message | markdownify }}
This gives a total ownership of a static site’s comments, so that the site owner can do whatever (s)he wants with the comments.
There’re many ways to Rome, say JAM Stack, Jekyll AWS comments, etc.
You are using a different theme than the original poster. The one you are using does not use image meta tags in its layouts, therefore the image config is never used.
So I ran your site, and I can see this generated when I inspect a page:
yes I cloned your site and built with 0.60. There’s been a few changes between 0.53 and the latest Hugo version. If you are unable to use a different Hugo version for the whole site, you might want to roll your own opengraph partial instead, based on the current internal one.
Ok, I am convinced this is a problem related to my Hugo version. I will just add the meta tag by hand, hard-coded, until I can upgrade. Thanks for your assistance!