Skip to content
This repository has been archived by the owner on Feb 14, 2023. It is now read-only.

Popel Ghost Theme 4.0.0

Latest
Compare
Choose a tag to compare
@spaytac spaytac released this 06 Apr 07:28
b347abe

popel v4 is launched. This version is for ghost 4 and upwards.

Overview:

  • Integration of Accent-Colors. you can change the default accent color within the branding settings.
  • ghost second navigation is integrated, the custom solution is removed in this version.
  • a subscribe button is implemented for posts/articles. It appears on the bottom of any post/article.
  • Infinite scrolling for loading older posts (index, tags and author info page)
  • integration of commento comments with customized style
  • ability to override some css classes within the code injection settings.

Example commento:
there is no need to edit tempaltes within this theme to integrate commento. You need to provide the following information in a script tag.

commento_url: url to you commento environment
commento_auto: true or false. If set to true, the comments for every post/article will be loaded immediately, other wise the visitors must click on the "comments" button to load the comments.
commento_css: if you want to use a custom stylesheet for commento, you can use this property to overwrite the default style. The default style is mostly intetgrated to the popel look&feel.

This settings - within a script tag - should be placed in the site footer code injection (rel path: ghost/#/settings/code-injection)

Example:

<script>
  var commento_url="https://commento.aytac.xyz"; /* mandatory */
  var commento_auto = true;  /* mandatory */
  var commento_css = "https://commento.aytac.xyz/css/commento.css"; /* optional */
</script>