Dave Jansen 851cc4e814 Squashed commit of the following:
commit 2cfe4e2016
Author: Sodbileg Gansukh <sodbileg.gansukh@gmail.com>
Date:   Wed Mar 13 17:11:42 2024 +0800

    v1.2.1

commit 3b99c9e881
Author: Sodbileg Gansukh <sodbileg.gansukh@gmail.com>
Date:   Wed Mar 13 17:09:19 2024 +0800

    Fixed white background issue on accent color navigation

    fixes DES-173

commit 0beef28a44
Author: Sanne de Vries <65487235+sanne-san@users.noreply.github.com>
Date:   Wed Mar 13 08:37:06 2024 +0100

    Updated default button card styles to support multiline buttons (#43)

    * Updated default button card styles to support multiline buttons

    Ref DES-160

    * Center-aligned button text

commit 652105318e
Author: Sodbileg Gansukh <sodbileg.gansukh@gmail.com>
Date:   Mon Mar 4 14:06:06 2024 +0800

    v1.2.0

commit 6e29abe79a
Author: Peter Zimon <peter.zimon@gmail.com>
Date:   Mon Feb 26 10:46:07 2024 +0100

    Various design improvements (#42)

    There are a couple of minor improvements which customers solve at the moment with various hacks and should be part of the theme instead.

    * Removed max-width from card excerpt

    * Updated custom theme settings

    - Added show/hide "Read more" section in posts
    - Added drop-cap option for posts
    - Added show/hide metadata for posts

    * Added lock icon for members-only posts on list

    * Updated excerpt logic to work with access levels

    * Fixing missing id's for input fields

    * Updated secondary color contrast

commit dc3e6cb539
Author: Sodbileg Gansukh <sodbileg.gansukh@gmail.com>
Date:   Tue Jan 23 13:04:26 2024 +0700

    Improved accessibility

    refs #37

commit a2846beab2
Author: Sodbileg Gansukh <sodbileg.gansukh@gmail.com>
Date:   Mon Jan 22 15:04:29 2024 +0700

    Added better styling to pre and code elements

    closes #11, #21

commit ebc4792154
Author: Sodbileg Gansukh <sodbileg.gansukh@gmail.com>
Date:   Wed Jan 3 16:17:55 2024 +0700

    Improved HTML table rendering

    fixes #17

commit c060944364
Author: Sodbileg Gansukh <sodbileg.gansukh@gmail.com>
Date:   Wed Jan 3 12:20:49 2024 +0700

    Fixed mobile scrolling issues

    fixes #12

    - added background color to the mobile menu actions
    - disabled root scrolling when the mobile menu is opened which fixes the duplicate scrolling issue

commit d046267a3a
Author: Sodbileg Gansukh <sodbileg.gansukh@gmail.com>
Date:   Wed Jan 3 11:39:09 2024 +0700

    Improved typography hierarchy
2024-08-06 09:10:06 +09:00
2024-08-06 09:10:06 +09:00
2023-07-05 20:43:09 +08:00
2023-09-18 17:50:05 +08:00
2024-08-06 09:03:09 +09:00
2024-08-06 09:03:09 +09:00
2023-09-18 17:50:05 +08:00
2023-09-18 17:50:05 +08:00
2023-10-03 15:55:25 +08:00
2024-08-06 09:10:06 +09:00
2023-08-07 19:58:36 +08:00
2024-07-02 13:50:47 +08:00
2023-10-03 16:03:10 +08:00
2023-09-18 17:50:05 +08:00
2024-08-06 09:10:06 +09:00

Source

The default theme for Ghost. This is the latest development version of Source! If you're just looking to download the latest release, head over to the releases page.

 

First time using a Ghost theme?

Ghost uses a simple templating language called Handlebars for its themes.

This theme has lots of code comments to help explain what's going on just by reading the code. Once you feel comfortable with how everything works, we also have full theme API documentation which explains every possible Handlebars helper and template.

The main files are:

  • default.hbs - The parent template file, which includes your global header/footer
  • home.hbs - The homepage
  • index.hbs - The main template to generate a list of posts
  • post.hbs - The template used to render individual posts
  • page.hbs - Used for individual pages
  • tag.hbs - Used for tag archives, eg. "all posts tagged with news"
  • author.hbs - Used for author archives, eg. "all posts written by Jamie"

One neat trick is that you can also create custom one-off templates by adding the slug of a page to a template file. For example:

  • page-about.hbs - Custom template for an /about/ page
  • tag-news.hbs - Custom template for /tag/news/ archive
  • author-ali.hbs - Custom template for /author/ali/ archive

Development

Source 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 dependencies
yarn install

# run development server
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.

# create .zip file
yarn zip

PostCSS Features Used

  • 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.

SVG Icons

Source uses inline SVG icons, included via Handlebars partials. You can find all icons inside /partials/icons. To use an icon just include the name of the relevant file, eg. To include the SVG icon in /partials/icons/rss.hbs - use {{> "icons/rss"}}.

You can add your own SVG icons in the same manner.

Copyright & License

Copyright (c) 2013-2023 Ghost Foundation - Released under the MIT license.

Description
Slightly modified and customized fork of the default Ghost theme.
https://www.davejansen.com/ Readme MIT 1.1 MiB
Languages
CSS 55.6%
Handlebars 31%
JavaScript 13.4%