A highly functional theme that adapts to the reader's preferences. Let them read, search, subscribe, navigate, and more with ease. Completely free and fully responsive, released under the MIT license.
Note: Forked from the original to remove dependency on jquery, remove search, and reduce the number of third party dependencies in the javascript.
Example: https://hawkradius.com
- Download this theme
- Log into Ghost, and go to the
Design
settings area to upload the zip file
If your logo image isn't recognizable in dark mode, you can set a white version of the logo in Code injection > Site Header
field.
<script>
var gh_white_logo = 'https://example.com/content/images/white-logo.png';
</script>
The theme looks for a menu item with three dots (...
) in its URL, and uses that as a dropdown menu toggle. All menu items after the toggle will be added to the dropdown list automatically.
Label | URL |
---|---|
More links | https://example.com/... |
Sub-1 | https://example.com/sub-1 |
Sub-2 | https://example.com/sub-2 |
Styles are compiled using Gulp/PostCSS to polyfill future CSS spec. You'll need Node, Yarn and Gulp installed globally. After that, from the theme's root directory:
# Install
yarn
# Run build & watch for changes
$ yarn dev
Now you can edit /assets/css/
files, which will be compiled to /assets/built/
automatically.
The zip
Gulp task packages the theme files into dist/<theme-name>.zip
, which you can then upload to your site.
yarn zip
- Autoprefixer - Don't worry about writing browser prefixes of any kind, it's all done automatically with support for the latest 2 major versions of every browser.
Copyright (c) 2013-2022 Ghost Foundation - Released under the MIT license.