-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit fe55c7b
Showing
118 changed files
with
12,098 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: Build and deploy to GitHub Pages | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
github-pages: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: helaili/jekyll-action@v2 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
target_branch: 'gh-pages' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# OS X | ||
.DS_Store | ||
|
||
# Jekyll build | ||
/_site/ | ||
.jekyll-metadata | ||
#Gemfile.lock | ||
|
||
# webstorm | ||
.idea/ | ||
|
||
# others | ||
*.swp | ||
package-lock.json | ||
|
||
# site build | ||
*.gem | ||
*.rbc | ||
.bundle | ||
.config | ||
coverage | ||
InstalledFiles | ||
lib/bundler/man | ||
pkg | ||
rdoc | ||
spec/reports | ||
test/tmp | ||
test/version_tmp | ||
tmp | ||
vendor | ||
Gemfile.lock | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
--- | ||
layout: error | ||
current: error | ||
title: "404 - Page Not Found" | ||
permalink: 404.html | ||
--- | ||
<!-- | ||
This error template is used for all 404 errors, which might occur on your site. | ||
It's a good idea to keep this template as minimal as possible in terms of both file size and complexity. | ||
--> | ||
|
||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<title>{{ page.title }}</title> | ||
<meta name="HandheldFriendly" content="True" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}assets/built/screen.css" /> | ||
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}assets/built/screen.edited.css" /> | ||
<!-- This tag outputs SEO meta+structured data and other important settings --> | ||
{% include head.html %} | ||
</head> | ||
<body class="error-template"> | ||
<div class="site-wrapper"> | ||
|
||
<header class="site-header outer {% if page.cover %}" style="background-image: url({{ site.baseurl }}{{ page.cover }})){% else %}no-cover{% endif %}"> | ||
<div class="inner"> | ||
<nav class="site-nav-center"> | ||
{% if site.logo %} | ||
<a class="site-nav-logo" href="{{ site.baseurl }}"><img src="{{site.baseurl}}{{ site.logo }}" alt="{{ site.title }}" /></a> | ||
{% else %} | ||
<a class="site-nav-logo" href="{{ site.baseurl }}">{{ site.title }}</a> | ||
{% endif %} | ||
</nav> | ||
</div> | ||
</header> | ||
|
||
<main id="site-main" class="site-main outer" role="main"> | ||
<div class="inner"> | ||
|
||
<section class="error-message"> | ||
<h1 class="error-code">404</h1> | ||
<p class="error-description">Page not found</p> | ||
<a class="error-link" href="{{ site.baseurl }}">Go to the front page →</a> | ||
</section> | ||
</div> | ||
</main> | ||
|
||
<!-- get "posts" limit="3" --> | ||
<aside class="outer"> | ||
<div class="inner"> | ||
<div class="post-feed"> | ||
<!-- The tag below includes the markup for each post - partials/post-card.hbs --> | ||
{% include post-card-error.html %} | ||
</div> | ||
</div> | ||
</aside> | ||
<!-- /get --> | ||
|
||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
Copyright (c) 2013-2017 Ghost Foundation - 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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
source "https://rubygems.org" | ||
|
||
gem "jekyll", "~> 3.9.0" | ||
gem "github-pages", "~> 214" | ||
gem "rake", "~> 13.0.3" | ||
gem "slugify", "~> 1.0.7" | ||
gem 'wdm', '>= 0.1.0' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2018-2021 Fábio Madeira | ||
|
||
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
## Jasper2 | ||
|
||
[![Build Status](https://github.com/jekyllt/jasper2/actions/workflows/jekyll_build.yml/badge.svg)](https://github.com/jekyllt/jasper2/actions/workflows/jekyll_build.yml) | ||
[![Ruby](https://img.shields.io/badge/ruby-2.6.3-blue.svg?style=flat)](http://travis-ci.org/jekyllt/jasper2) | ||
[![Jekyll](https://img.shields.io/badge/jekyll-3.9.0-blue.svg?style=flat)](http://travis-ci.org/jekyllt/jasper2) | ||
|
||
This is a full-featured port of Ghost's default theme [Casper](https://github.com/tryghost/casper) | ||
[v2.1.9](https://github.com/TryGhost/Casper/releases/tag/2.1.9) for [Jekyll](https://jekyllrb.com/) / [GitHub Pages](https://pages.github.com/). | ||
|
||
## Live Demo | ||
|
||
[Ghost's Casper](https://demo.ghost.io) // [Jasper2](https://jekyllt.github.io/jasper2) | ||
|
||
![home page](https://raw.githubusercontent.com/jekyllt/jasper2/master/assets/screenshot-desktop.jpg) | ||
|
||
|
||
## 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](https://github.com/jekyll/jekyll-feed) | ||
* Toggleable subscribe button (requires an external service) | ||
* Code Syntax Highlight with [highlight.js](https://highlightjs.org/) | ||
* 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](https://github.com/features/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](.github/workflows/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](https://travis-ci.org/) (with goodies from | ||
[jekyll-travis](https://github.com/mfenner/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](https://github.com/jekyllt/jasper2/tree/gh-pages)). | ||
|
||
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](_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](.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](https://github.com/mfenner/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](_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](https://github.com/tryghost/casper#development): | ||
|
||
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: | ||
|
||
```bash | ||
$ 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](https://github.com/jekyllt/jasper2/issues). | ||
|
||
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 :smile: | ||
|
||
|
||
## Copyright & License | ||
|
||
Same licence as the one provided by Ghost's team. See Casper's theme [license](GHOST.txt). | ||
|
||
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
############################################################################# | ||
# | ||
# Modified version of jekyllrb Rakefile | ||
# https://github.com/jekyll/jekyll/blob/master/Rakefile | ||
# | ||
############################################################################# | ||
|
||
require 'rake' | ||
require 'date' | ||
require 'yaml' | ||
|
||
CONFIG = YAML.load(File.read('_config.yml')) | ||
USERNAME = CONFIG["username"] | ||
REPO = CONFIG["repo"] | ||
SOURCE_BRANCH = CONFIG["branch"] | ||
DESTINATION_BRANCH = "gh-pages" | ||
CNAME = CONFIG["CNAME"] | ||
|
||
def check_destination | ||
unless Dir.exist? CONFIG["destination"] | ||
sh "git clone https://$GIT_NAME:[email protected]/#{USERNAME}/#{REPO}.git #{CONFIG["destination"]}" | ||
end | ||
end | ||
|
||
namespace :site do | ||
desc "Generate the site" | ||
task :build do | ||
check_destination | ||
sh "bundle exec jekyll build" | ||
end | ||
|
||
desc "Generate the site and serve locally" | ||
task :serve do | ||
check_destination | ||
sh "bundle exec jekyll serve" | ||
end | ||
|
||
desc "Generate the site, serve locally and watch for changes" | ||
task :watch do | ||
sh "bundle exec jekyll serve --watch" | ||
end | ||
|
||
desc "Generate the site and push changes to remote origin" | ||
task :deploy do | ||
# Detect pull request | ||
if ENV['TRAVIS_PULL_REQUEST'].to_s.to_i > 0 | ||
puts 'Pull request detected. Not proceeding with deploy.' | ||
exit | ||
end | ||
|
||
# Configure git if this is run in Travis CI | ||
if ENV["TRAVIS"] | ||
sh "git config --global user.name $GIT_NAME" | ||
sh "git config --global user.email $GIT_EMAIL" | ||
sh "git config --global push.default simple" | ||
end | ||
|
||
# Make sure destination folder exists as git repo | ||
check_destination | ||
|
||
sh "git checkout #{SOURCE_BRANCH}" | ||
Dir.chdir(CONFIG["destination"]) { sh "git checkout #{DESTINATION_BRANCH}" } | ||
|
||
# Generate the site | ||
sh "bundle exec jekyll build" | ||
|
||
# Commit and push to github | ||
sha = `git log`.match(/[a-z0-9]{40}/)[0] | ||
Dir.chdir(CONFIG["destination"]) do | ||
# check if there is anything to add and commit, and pushes it | ||
sh "if [ -n '$(git status)' ]; then | ||
echo '#{CNAME}' > ./CNAME; | ||
git add --all .; | ||
git commit -m 'Updating to #{USERNAME}/#{REPO}@#{sha}.'; | ||
git push --quiet origin #{DESTINATION_BRANCH}; | ||
fi" | ||
puts "Pushed updated branch #{DESTINATION_BRANCH} to GitHub Pages" | ||
end | ||
end | ||
end |
Oops, something went wrong.