Mix of starter theme, dracula colors and my own ideas.
Theme includes sidebar and syntax highlighting.
This theme includes sidebar with Author info, Last posts and Tags cloud.
Some stuff there is hardcoded, but you can change it in partials/sidebar.hbs.
Authors website, Facebook and Twitter links can be set in author profile setting .
To add custom links go to Settings -> Code Injection -> Site Header and add this code:
<script>
var SOCIAL_LINKS_COLLECTION = [
{
title: "Telegram",
href: "https://t.me/<your_nik>",
svg: "<svg fill=\"#000000\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 50 50\" width=\"100px\" height=\"100px\"><path d=\"M46.137,6.552c-0.75-0.636-1.928-0.727-3.146-0.238l-0.002,0C41.708,6.828,6.728,21.832,5.304,22.445\tc-0.259,0.09-2.521,0.934-2.288,2.814c0.208,1.695,2.026,2.397,2.248,2.478l8.893,3.045c0.59,1.964,2.765,9.21,3.246,10.758\tc0.3,0.965,0.789,2.233,1.646,2.494c0.752,0.29,1.5,0.025,1.984-0.355l5.437-5.043l8.777,6.845l0.209,0.125\tc0.596,0.264,1.167,0.396,1.712,0.396c0.421,0,0.825-0.079,1.211-0.237c1.315-0.54,1.841-1.793,1.896-1.935l6.556-34.077\tC47.231,7.933,46.675,7.007,46.137,6.552z M22,32l-3,8l-3-10l23-17L22,32z\"/></svg>",
}, {
title: "Github",
href: "https://github.com/<your_nik>",
icon: "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png",
}, {
title: "Some other link",
href: "href://some.other.link",
icon: "some_other_link_icon.png",
},
{...},
{...},
];
</script>href- link url- Icon image options:
- Use
svgto add svg icon code - Use
iconto add link to icon image
- Use
- Optional:
title- link titleclass- additional class for link
Generate a table of contents based on the heading structure of a html document.
It will appear on top of the sidebar. And will stick to the top of the screen when scrolling.
You can change TocBot by adding this code to Settings -> Code Injection -> Site Header:
Full list of options: https://tscanlin.github.io/tocbot/#api
<script>
var TOC_BOT_OPTIONS = {
collapseDepth: 0,
}
</script>The main files are:
default.hbs- The main template fileindex.hbs- Used for the home pagepost.hbs- Used for individual postspage.hbs- Used for individual pagestag.hbs- Used for tag archivesauthor.hbs- Used for author archiveserror.hbs- Used for error pages
One neat trick is that you can also create custom one-off templates just by adding the slug of a page to a template file. For example:
page-about.hbs- Custom template for the/about/pagetag-news.hbs- Custom template for/tag/news/archiveauthor-jamie.hbs- Custom template for/author/jamie/archive
partials/card.hbs- Post card for index pagepartials/sidebar.hbs- Sidebarpartials/card-short.hbs- Post card for sidebarpartials/pagination.hbs- Paginationpartials/icons/<icon_name>.svg- SVG-icons used in theme
The Starter theme provides a first-class development experience out of the box.
To see realtime changes during development, symlink the Starter theme folder to the content/themes folder in your local Ghost install.
ln -s /path/to/starter /ghost/content/themes/starterRestart Ghost and select the Starter theme from Settings.
From the theme's root directory, install the dependencies:
npm installIf Node isn't installed, follow the official Node installation guide.
From the Starter theme folder, start development mode:
npm run devChanges you make to your styles, scripts, and Handlebars files will show up automatically in the browser. CSS and
Javascript will be compiled and output to the built folder.
Press ctrl + c in the terminal to exit development mode.
Compile your CSS and JavaScript assets for production with the following command:
npm run buildCreate a zip archive:
npm run zipUse gscan to test your theme for compatibility with Ghost:
npm run test
Copyright (c) 2023 RAMe0- Released under the MIT license.
Copyright (c) 2013-2023 Ghost Foundation - Released under the MIT license.
