All Projects → xiaoluoboding → Ghost Theme Kaldorei

xiaoluoboding / Ghost Theme Kaldorei

Licence: mit
🎨 A Simple And Elegant Ghost Theme Derive From Default Theme Casper

Projects that are alternatives of or similar to Ghost Theme Kaldorei

Boo
Boo - A beautiful, clean and responsive theme for Ghost.
Stars: ✭ 176 (-35.53%)
Mutual labels:  ghost, ghost-theme, simple
heidi
A port of Mark Otto's Hyde theme to Ghost
Stars: ✭ 34 (-87.55%)
Mutual labels:  ghost, ghost-theme
donnie-dark
Donnie Dark is dark, responsive, customizable theme for Ghost 0.5+ blogs. Name of the theme is hats-off for a great movie.
Stars: ✭ 20 (-92.67%)
Mutual labels:  ghost, ghost-theme
Edition
The newsletter theme for Ghost
Stars: ✭ 60 (-78.02%)
Mutual labels:  ghost, ghost-theme
biron-ghost-theme
Biron Free Ghost Theme
Stars: ✭ 43 (-84.25%)
Mutual labels:  ghost, ghost-theme
Edge
A visually aesthetic portfolio theme for Ghost
Stars: ✭ 61 (-77.66%)
Mutual labels:  ghost, ghost-theme
aesto
Free Ghost theme with membership support. Minimal content focused design with multi author supported.
Stars: ✭ 31 (-88.64%)
Mutual labels:  ghost, ghost-theme
Ease
A minimal documentation theme for Ghost
Stars: ✭ 69 (-74.73%)
Mutual labels:  ghost, ghost-theme
whisper
Whisper Ghost Theme
Stars: ✭ 47 (-82.78%)
Mutual labels:  ghost, ghost-theme
clean
clean是一个简洁清新的ghost博客现代主题 https://www.imcaviare.com
Stars: ✭ 14 (-94.87%)
Mutual labels:  ghost, ghost-theme
Tribeca
A free theme for Ghost
Stars: ✭ 15 (-94.51%)
Mutual labels:  ghost, ghost-theme
ghost-matery
这是一个漂亮、简洁、响应式并采用Material Design设计的Ghost博客主题,当然ghost-matery2更好。
Stars: ✭ 58 (-78.75%)
Mutual labels:  ghost, ghost-theme
Wave
A podcast/blog theme for Ghost
Stars: ✭ 60 (-78.02%)
Mutual labels:  ghost, ghost-theme
Alto
A clean, minimalist theme featuring a light and dark mode for Ghost
Stars: ✭ 109 (-60.07%)
Mutual labels:  ghost, ghost-theme
undefined-ghost-theme
A minimal, Ghost 5.0-ready, membership-enabled starter theme for the Ghost blogging platform.
Stars: ✭ 76 (-72.16%)
Mutual labels:  ghost, ghost-theme
Prometheus
🌈 A Clean And Modern Ghost Theme with Progressive Web Apps (PWA)
Stars: ✭ 94 (-65.57%)
Mutual labels:  ghost, ghost-theme
smart
A theme for the open source Ghost CMS.
Stars: ✭ 23 (-91.58%)
Mutual labels:  ghost, ghost-theme
mention-ghost-theme
Mention theme for Ghost blogging platform, built by https://vanila.io
Stars: ✭ 69 (-74.73%)
Mutual labels:  ghost, ghost-theme
plume2
🚀a lightweight React state container for web and app
Stars: ✭ 74 (-72.89%)
Mutual labels:  simple, elegant
starter
A clean theme for Ghost blog
Stars: ✭ 26 (-90.48%)
Mutual labels:  ghost, ghost-theme

Kaldorei

A Simple And Elegant Ghost Theme Derive From Default Theme Casper.

Ghost 3.x Kaldorei 3.0.0

English | 简体中文

Preview

img

Features

  • [x] Blog main theme is set to be fresh green

  • [x] The post's font color is ink blue

  • [x] Back To Top

  • [x] Code Highlight

  • [x] Side Bar

    • [x] Tag Cloud

    • [x] Table of Content

    • [x] Site Info

    • [x] Author Info

  • [x] Post Page

    • [x] Author Info
  • [x] Loading Posts Animation

  • [x] Responsive Design

  • [x] Archives

  • [x] Image LightBox

  • [x] Blog Global Search

  • [x] Color & Fonts

  • [ ] Dark mode

Config Reference

🌐 Language ^2.x

Ghost2.x version supports set the language of your site, Kaldorei also supports Chinese/English switching, the default value is en.

Configure:ghost admin > General > Publication Language Enter zh

🏷️ Tag Statistics ^2.x

In Ghost2.x version, Kaldorei uses the ghost api for statistics. so you need to enable the Public API function in the Ghost Labs.

Configure:ghost admin > Labs > Enable Beta Features > Checked Public API

🌄 Lightbox ^2.x

Kaldorei integrates fancyBox 3,supports picture lightbox effect, slide show carousel, full screen preview, thumbnail preview and other fancy features. Preview & usage Preview_Usage

💬 Disqus ^2.x

Kaldorei supports Disqus plugins,only need a short code snippet in the ghost admin code injection.

Configure:ghost admin > Code Injection > Blog Header

<script>
    var disqus_shortname = 'your_disqus_shortname';
</script>

🗂 Archives ^2.x

Kaldorei provides simple archives features, using ghost api to generate site archives. PreviewBlog Archives

Ghost 3.x Configure:ghost admin

  1. Pages -> New Page -> Enter the title "Archives", At this time, the page url is archives by default.
  2. Design > Create an archive navigation,URL:http://your_blog_url/archives;
  3. Done! Go to your site find your archives page. Have fun.

Ghost 2.x Configure:ghost admin

  1. New Post > Enter the title "Archives", At this time, the page url is archives by default.
  2. Post Settings > Checked Turn this post into a page,Then Publish;
  3. Navigation > Create an archive navigation,URL:http://your_blog_url/archives;
  4. Done! Go to your site find your archives page. Have fun.

🎨 Code Highlighting Theme ^2.x

Kaldorei uses highlight.js to achieve code highlight,the default theme is: monokai-sublime

Configuration:ghost admin > Code Injection > Blog Header

<!-- use solarized-light style -->
<link rel="stylesheet" type="text/css" href="/assets/plugins/highlight-latest/styles/solarized-light.css" />

Fully Themes List

🔢 Show code line number ^3.x

New feature in Version 3.x

Kaldorei supports config the line number of code snippets,show line numbers to the left of each code blocks, it's closed by default,also support dark / light mode

Configuration:ghost admin > Code Injection > Blog Header

<script>
  var hljsSettings = {
    // Optional value: flase / true, default: false
    lineNumber: true,
    // Optional value: dark / light,default: 'dark'
    mode: 'light'
  };
</script>

Not only the line number can be configured, but also the background color of the line number can be customized. The default line number background color is as follows:

<style>
:root {
  --linenumber-dark-bg: #282c34;
  --linenumber-light-bg: #c5d2d9;
}
</style>

🔍 Global Search ^2.x

Search engine supports search by blog title by default,This feature need the ghost version >= 2.10.x

Configure by two steps:

1、Create Custom Integrations

Configure:ghost admin > Integrations > Add custom integration

img

2、Configure Variables

Configure:ghost admin > Code Injection > Blog Header

// 
<script>
  var searchSettings = {
    key: '__CONTENT__API__KEY__',  // Your custom integration Content API Key
    host: '__API__URL__',  // Your custom integration API URL
  };
</script>

🌈 Custom Color & Fonts ^2.x

Starting from kaldorei v2.1.0 version, users can customize the color and font of your site.

banner_colors

Configure:ghost admin > Code Injection > Blog Header

<style>
:root {
  --primary-color: #4af;
  --primary-light-hover: #4cf;
  --primary-dark-hover: #49f;
}
</style>

Fully replaceable variables

🔖 Bookmark card ^3.x

Starting from Ghost v3.x version, It provides a new bookmark card feature, it can show the page title、excerpt、author、publisher and even a preview image. Like this:

bookmark

Kaldorei supports bookmark card feature in the 3.x version, How to Configure, Checkout official website

Credits

License

MIT © xiaoluoboding

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].