Hello,
I want to start developing Ghost themes, but my main issue is that i am not finding many resources. Do you have any suggestions for me? From where should I start? Is there any Starter Theme for Ghost?
Thank you,
Madalin.
Hello,
I want to start developing Ghost themes, but my main issue is that i am not finding many resources. Do you have any suggestions for me? From where should I start? Is there any Starter Theme for Ghost?
Thank you,
Madalin.
Casper is the default Ghost theme and is a good example of a theme that can be worked on. Take a look at the workflow to see how you might develop your theme, or use the theme as a starting point to create theme. What specifically do you have questions about?
Hello vikaspotluri123, thank you for your suggestion. I was interested in a workflow
Casper looks like a very good starting point. Any other suggestions?
The workflow I generally follow (but of course, there’s no one correct workflow ) is:
default.hbs
partials/component.hbs
{{ghost_head}}
){{get}}
helper things)I prefer not worrying about converting my design into a theme until the end, as the template can easily be converted into another format if needed - i.e. for Jekyll, Gatsby, Wordpress, etc.
Let me know if you have any other questions
That’s some really good advices. Thanks a lot.
I tend to start work my way out from the code. I used Casper as the starting point for my first theme, and my first theme as the starting point for my second theme. Eventually I got tired of this. I looked for a boilerplate theme that would fit my needs, and didn’t find one. So I wrote my own.
Now, I use my Undefined Starter Theme as the basis for all my themes:
It has all the essentials that a Ghost theme needs, and leaves the opinionated choices up to you. Just drop in your framework and tooling of choice and you’re off the races.
My workflow almost matches your workflow. Do you use any specific tool or method for A11y testing (without the keyboard navigation)?
Any suggestion will be helpful and appreciated.
Not particularly, I try to incorporate what I know about a11y into the theme development process. Unfortunately, I have no concrete evidence that what I’m doing is actually useful, but with my limited interactions with screen readers, it seems to be good enough. Lighhouse does include some a11y suggestions, so running it is always a good idea
Okay, Thanks for the information. I will try screen readers. And lighthouse indeed a very good tool.