-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(theme): refactor theme related code according to jekyll
- Loading branch information
1 parent
85edfca
commit 39aa704
Showing
32 changed files
with
42 additions
and
37 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
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,30 @@ | ||
/*! | ||
* Pixyll - A simple, beautiful Jekyll theme that's mobile first. | ||
* Crafted with <3 by John Otander (@4lpine) - ©2015-2019 John Otander | ||
* @author John Otander <[email protected]> (http://johnotander.com/) | ||
* @link https://github.com/johnotander/pixyll | ||
* @license MIT | ||
*/ | ||
@charset 'UTF-8'; | ||
|
||
@import 'bookworm/variables'; | ||
|
||
@import 'bookworm/basscss'; | ||
|
||
@import 'bookworm/base'; | ||
|
||
@import 'bookworm/links'; | ||
@import 'bookworm/positions'; | ||
@import 'bookworm/clearfix'; | ||
@import 'bookworm/code'; | ||
@import 'bookworm/typography'; | ||
@import 'bookworm/header'; | ||
@import 'bookworm/tables'; | ||
@import 'bookworm/animations'; | ||
@import 'bookworm/footer'; | ||
@import 'bookworm/blockquotes'; | ||
@import 'bookworm/posts'; | ||
@import 'bookworm/media-queries'; | ||
@import 'bookworm/gists'; | ||
@import 'bookworm/measure'; | ||
@import 'bookworm/pagination'; |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -1,34 +1,7 @@ | ||
--- | ||
# The scss file which include files from _sass/ | ||
--- | ||
@charset "UTF-8"; | ||
@charset 'UTF-8'; | ||
$base-url: "{{ site.baseurl }}"; | ||
|
||
/*! | ||
* Pixyll - A simple, beautiful Jekyll theme that's mobile first. | ||
* Crafted with <3 by John Otander (@4lpine) - ©2015-2019 John Otander | ||
* @author John Otander <[email protected]> (http://johnotander.com/) | ||
* @link https://github.com/johnotander/pixyll | ||
* @license MIT | ||
*/ | ||
|
||
@import 'variables'; | ||
|
||
@import 'basscss'; | ||
|
||
@import 'base'; | ||
|
||
@import 'links'; | ||
@import 'positions'; | ||
@import 'clearfix'; | ||
@import 'code'; | ||
@import 'typography'; | ||
@import 'header'; | ||
@import 'tables'; | ||
@import 'animations'; | ||
@import 'footer'; | ||
@import 'blockquotes'; | ||
@import 'posts'; | ||
@import 'media-queries'; | ||
@import 'gists'; | ||
@import 'measure'; | ||
@import 'pagination'; | ||
@import "bookworm"; |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# coding: utf-8 | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = "bookworm" | ||
spec.name = "jekyll-theme-bookworm" | ||
spec.version = "1.0.0" | ||
spec.authors = ["Kosala Nuwan Perera"] | ||
spec.email = ["[email protected]"] | ||
|
@@ -13,11 +13,12 @@ Gem::Specification.new do |spec| | |
spec.metadata["plugin_type"] = "theme" | ||
|
||
spec.files = `git ls-files -z`.split("\x0").select do |f| | ||
f.match(%r{^((_includes|_layouts|_sass|assets)/|Rakefile|(LICENSE|README)((\.(txt|md|markdown)|$)))}i) | ||
f.match(%r{^(_layouts|_includes|_sass|LICENSE|README)/i}) | ||
end | ||
|
||
spec.add_runtime_dependency "jekyll", "~> 3.3" | ||
spec.add_development_dependency "bundler", ">= 1.12" | ||
spec.add_development_dependency "rake", "~> 10.0" | ||
spec.add_runtime_dependency "jekyll-feed", "~> 0.9" | ||
spec.add_development_dependency 'jekyll' | ||
spec.add_development_dependency 'bundler' | ||
spec.add_development_dependency 'rake' | ||
|
||
end |