A content focused responsive theme for Ghost. Customized for somni's own blog, 솜니.로그.
Original repository: zutrinken/attila
You can buy original author a drink if you enjoy using Attila. Cheers 🍻
To be added.
- Theme options
- Responsive layout
- Light and Dark Mode
- Search support
- Post reading progress
- Code highlight including line numbers
- Comments and Disqus (Theme option)
- Ghost accent color
- Change default font families
- Primary (UI): Pretendard
- Secondary (Body): Iropke Batang (이롭게 바탕체)
- You can still redefine default font families by code injection!
- Add redefinable
monospace
font family- Default is D2Coding
- Korean translations
- Make more texts translatable
- Can add Mastodon link in navigation meta
- Mastodon URL can be set in theme options
- Backlinked using
rel="me"
by default (for verification in Mastodon profile meta)
- More theme options
- Date format
- Hide author in front page post loops
- Custom footer text
- Custom theme pages
- Tag list page (
/tags
)
- Tag list page (
Only 🇺🇸 English (US), 🇰🇷 Korean, 🇯🇵 Japanese localizations managed on this repo, directly by somni. You can consider contribute translations in your language on original Attila repo.
To be changed!
- 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;
--font-monospace: "Lucida Console", monospace;
}
</style>
Install Grunt:
$ npm install -g grunt-cli
Install project dependencies:
$ yarn
This will clean, build, and compress at once. Compressed theme will be available at dist/<theme-name>.zip
, which you can then upload to your site.
$ yarn dist
Alternatively, you can just build Grunt project by this command:
$ grunt build
Copyright (C) 2015-2022 Peter Amende
Copyright (C) 2022- somni
Released under the MIT License.