All Projects → jekyllt → jasper2

jekyllt / jasper2

Licence: MIT license
Full-featured Jekyll port of Ghost's default theme Casper v2 👻

Programming Languages

HTML
75241 projects
CSS
56736 projects
javascript
184084 projects - #8 most used programming language
ruby
36898 projects - #4 most used programming language
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to jasper2

Oscailte
Oscailte — A powerful light, clean, and responsive Jekyll theme.
Stars: ✭ 178 (-75.45%)
Mutual labels:  jekyll-theme, github-pages, jekyll-themes
startbootstrap-stylish-portfolio-jekyll
Jekyll theme based on Stylish Portfolio Bootstrap theme
Stars: ✭ 20 (-97.24%)
Mutual labels:  jekyll-theme, github-pages, jekyll-themes
agency-jekyll-theme
Jekyll version of the newest Agency Bootstrap theme, plus new features: Google Analytics, Markdown support, custom pages, and more!
Stars: ✭ 222 (-69.38%)
Mutual labels:  jekyll-theme, github-pages, jekyll-themes
jekyll-theme-mint
A clean and responsive jekyll theme
Stars: ✭ 16 (-97.79%)
Mutual labels:  jekyll-theme, github-pages, jekyll-themes
Type Theme
A free and open-source Jekyll theme with responsive design. Great for blogs and easy to customize.
Stars: ✭ 657 (-9.38%)
Mutual labels:  jekyll-theme, github-pages, jekyll-themes
catbook
a category-centric theme for Jekyll
Stars: ✭ 48 (-93.38%)
Mutual labels:  jekyll-theme, github-pages, jekyll-themes
fuse-core
The 'Fuse Core' Jekyll theme.
Stars: ✭ 29 (-96%)
Mutual labels:  jekyll-theme, github-pages, jekyll-themes
Beautiful Jekyll
✨ Build a beautiful and simple website in literally minutes. Demo at https://beautifuljekyll.com
Stars: ✭ 3,778 (+421.1%)
Mutual labels:  jekyll-theme, github-pages, jekyll-themes
Jekyll Uno
Jekyll-Uno - a minimal, responsive theme for Jekyll based on Uno for Ghost
Stars: ✭ 559 (-22.9%)
Mutual labels:  jekyll-theme, github-pages, jekyll-themes
Hydeout
A refreshed version of Hyde for Jekyll 3.x and 4.x
Stars: ✭ 448 (-38.21%)
Mutual labels:  jekyll-theme, github-pages, jekyll-themes
Mzlogin.github.io
Jekyll Themes / GitHub Pages 博客模板 / A template repository for Jekyll based blog
Stars: ✭ 1,060 (+46.21%)
Mutual labels:  jekyll-theme, github-pages, jekyll-themes
Jekyll Timeline
Timeline / Résumé Theme with Jekyll
Stars: ✭ 46 (-93.66%)
Mutual labels:  jekyll-theme, github-pages, jekyll-themes
Millennial
A minimalist Jekyll theme for running an online publication
Stars: ✭ 223 (-69.24%)
Mutual labels:  jekyll-theme, github-pages, jekyll-themes
Primer
Primer is a Jekyll theme for GitHub Pages
Stars: ✭ 160 (-77.93%)
Mutual labels:  jekyll-theme, github-pages
Midnight
Midnight is a Jekyll theme for GitHub Pages
Stars: ✭ 155 (-78.62%)
Mutual labels:  jekyll-theme, github-pages
Jekyll Doc Theme
Jekyll theme for creating project documentation websites
Stars: ✭ 203 (-72%)
Mutual labels:  jekyll-theme, static-site
Affiliates Jekyll Theme
Affiliates - Jekyll Blogging Theme for Affiliate Marketers
Stars: ✭ 145 (-80%)
Mutual labels:  jekyll-theme, jekyll-themes
Wu Kan.github.io
✨ my homepage & template for jekyll-theme-WuK
Stars: ✭ 171 (-76.41%)
Mutual labels:  jekyll-theme, jekyll-themes
Resume
A minimalist resume template for Jekyll and Hexo
Stars: ✭ 174 (-76%)
Mutual labels:  jekyll-theme, jekyll-themes
Minima
Minima is a one-size-fits-all Jekyll theme for writers.
Stars: ✭ 2,452 (+238.21%)
Mutual labels:  jekyll-theme, jekyll-themes

Jasper2

Build Status Ruby Jekyll

This is a full-featured port of Ghost's default theme Casper v2.1.9 for Jekyll / GitHub Pages.

Live Demo

Ghost's Casper // Jasper2

home page

Features

  • Out of the box support for multiple authors (via _data/authors.yml)
  • Full author information including: picture, bio, website, twitter, facebook, etc.
  • Tag description(s) and personalised covers (via _data/tags.yml)
  • Related posts view at the bottom of each post
  • All Ghost default pages: Author page(s), Tag page(s), About page(s), 404, etc.
  • Pagination (infinite scrolling or standard pagination, i.e. posts across multiple pages)
  • Atom Feeds by Jekyll-feed
  • Toggleable subscribe button (requires an external service)
  • Code Syntax Highlight with highlight.js
  • Support for Google Analytics tracking
  • Support for Disqus comments (not Ghost standard)

Getting Started

Deployment

There are several alternatives to building and deploying the site:

  1. build the site with GitHub Actions which pushes the resulting files (the contents of _site/ or ../jasper2-pages/) to the gh-pages branch. This is the approach that is currently used. See jekyll_build.yml for more details.

  2. generate the site locally (more details below) and push the resulting HTML to a Github repository, that GitHub Pages then host;

  3. build the site with travis-ci (with goodies from jekyll-travis) automatically pushing the generated HTML files to a gh-pages branch.

  4. deploy the static website with Jekyll-compatible hosters, such as https://www.netlify.com/, that allow for deployment from the Github repo and publish the website using CDNs. Netlify has a free starter offer.

For option 2) simply clone this repository (master branch), and then run bundle exec jekyll serve inside the directory. Upload the resulting _site/ (or ../jasper2-pages/) contents to your repository (master branch if uploading as your personal page (e.g. username.github.io) or gh-pages branch if uploading as a project page (as for the demo).

For option 3) you will need to set up travis-ci for your personal fork. Briefly all you need then is to change your details in _config.yml so that you can push to your github repo. You will also need to generate a secure key to add to your .travis.yml (you can find more info on how to do it in that file). Also make sure you read the documentation from jekyll-travis. This approach has clear advantages in that you simply push your file changes to GitHub and all the HTML files are generated for you and pushed to gh-pages. Also you get to know if everything is still fine with your site builds. Don't hesitate to contact me if you still have any issues (see below about issue tracking).

Author Pages

In order to properly generate author pages you need to rename the field author in the front matter of every post to match that of your each author's username as defined in the _data/authors.yml file. With the latest update, multiple author blogs are now supported out of the box.

Compiling Styles

Following on the way Casper styles are compiled as described here:

Jasper2 styles are compiled using Gulp/PostCSS to polyfill future CSS spec. You'll need Node and Gulp installed globally. After that, from the theme's root directory:

$ npm install
$ gulp

Now you can edit /assets/css/ files, which will be compiled to /assets/built/ automatically.

Issues and Contributing

This install builds well with Ruby v2.6.3 and Jekyll v3.9.0. If you run into any problems please log them on the issue tracker.

Feel free pull-request your patches and fixes.

Thanks

Many thanks to the Ghost team for all the design work. Also many thanks to all contributors, that help keeping the project alive and updated 😄

Copyright & License

Same licence as the one provided by Ghost's team. See Casper's theme license.

Copyright (C) 2015-2021 - Released under the MIT License.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].