The theme for the DSA-LSC website. It's based on Casper.
This modification uses Gulp, JS, and SCSS to control the site. Most of the styles have been done in SCSS, styles transferred from casper have not been cleaned up yet, that's on the to-do list.
$ npm install
$ gulp
- Runsgulp watch
based on a local install.$ gulp lint
- Runs lint on the JS to ensure there's no errors.$ gulp build
- Run for PROD, this creates minified files and preps site for production environment.
- All styles documents are now in assets/scss
- All Scripts are located in assets/js, vendor scripts in assets/js/vendors
- Images for site are in assets/images
Ghost uses a simple templating language called Handlebars for its themes.
We've documented our default theme pretty heavily so that it should be fairly easy to work out what's going on just by reading the code and the comments. 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 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 archives
One really 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-ali.hbs
- Custom template for/author/ali/
archive
Casper 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 (c) 2013-2017 Ghost Foundation - Released under the MIT license.
bs- Custom template for
/author/ali/` archive
Casper 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 (c) 2013-2017 Ghost Foundation - Released under the MIT license.