Attila
Modified from content focused responsive theme for Ghost. See original.
I use Ghost as a headless CMS. So modifications are made to futher simiplify the original, and disable SEO.
ð Setup custom google fonts
- Go to fonts.google.com and choose a font.
- Choose Embed and copy the
<link>
code. - Go to Code injection.
- Add this to Blog Header:
<link href="https://fonts.googleapis.com/css2?family=Mukta&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Crimson+Text&display=swap" rel="stylesheet">
<style>
:root {
--font-primary: 'Mukta', sans-serif;
--font-secondary: 'Crimson Text', serif;
}
</style>
âï¸ Development
Install Grunt:
npm install -g grunt-cli
Install Grunt dependencies:
npm install
Build Grunt project:
grunt build
The compress Grunt task packages the theme files into dist/<theme-name>.zip
, which you can then upload to your site.
grunt compress
âï¸ Copyright & License
Released under the MIT License.
Special Thanks to Peter Amende