Skip to content

lexoo/bloggy

 
 

Repository files navigation

Bloggy for Ghost


bloggy

Last version Ghost version Node version Donate

Brand theme for Ghost.

Introduction

Bloggy is a fork of Ghost Blog theme with the unique purpose to make easy and adaptable Ghost theme for brand/corporative/marketing purpose.

Features

  • i18n support. Currently en_US/en_ES supported.
  • Google Analytics integration.
  • Newsletter integration powered by Mailchimp.
  • Featured and Static post views.
  • Sidebar based in widgets like popular posts, featured post, social, banner,...
  • Easy to hack. No limits!

First Steps

Installation

Enter the theme folder (content/themes) of your Ghost installation and paste the following command:

$ git clone https://github.com/Kikobeats/bloggy.git

Setup

DOM Selector

It's necessary that you stablish the DOM library and the version to use with the theme.

For do it, go to Admin PanelCode InjectionBlog Footer and should be similar to:

<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>

i18n

Supported languages: en_US/en_ES

By default, the main JS file of the theme is not linked because it's depend of what language do you want to use.

For do it, the process is similar to the DOM Selector: go to Admin PanelCode InjectionBlog Footer.

Now, the code to paste depend of the language that you want to use in your blog. The template of the code is:

<script type="text/javascript" src="/assets/js/bloggy.#{lang}.js"></script>

Replacing the #{lang} for the supported language that you want to use.

For example, if you want to use the en_EN version, just add:

<script type="text/javascript" src="/assets/js/bloggy.en_EN.js"></script>

Development

  1. Install theme dev dependencies: npm install.
  2. setup dev environment: gulp.
  3. Make a PR per each improvement :-).

Related

  • Uno Zen – Minimalist and Elegant theme for Ghost.

License

MIT © Kiko Beats

Packages

No packages published

Languages

  • CSS 55.8%
  • HTML 24.0%
  • JavaScript 11.9%
  • CoffeeScript 8.3%