forked from thinkininfinity/hexo-theme-apollo
-
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
孙崇升
committed
Nov 15, 2015
1 parent
ba4fd4b
commit a06df73
Showing
14 changed files
with
73 additions
and
26 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 |
---|---|---|
@@ -1,27 +1,7 @@ | ||
# Logs | ||
logs | ||
.DS_Store | ||
Thumbs.db | ||
db.json | ||
*.log | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
|
||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
|
||
# node-waf configuration | ||
.lock-wscript | ||
|
||
# Compiled binary addons (http://nodejs.org/api/addons.html) | ||
build/Release | ||
|
||
# Dependency directory | ||
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git | ||
node_modules | ||
node_modules/ | ||
public/ | ||
.deploy*/ |
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,15 @@ | ||
import gulp from 'gulp'; | ||
import sass from 'gulp-sass'; | ||
import autoprefixer from 'gulp-autoprefixer'; | ||
|
||
gulp.task('sass', function() { | ||
return gulp.src('./source/scss/*.scss') | ||
.pipe(sass({outputStyle: 'compressed'})) | ||
.pipe(autoprefixer()) | ||
.pipe(gulp.dest('./source/css')) | ||
}); | ||
|
||
gulp.task('default', ['sass'], function() { | ||
gulp.watch('./source/scss/**/*.scss', ['sass']); | ||
gulp.watch('./source/scss/jekyll.scss', ['sass']); | ||
}); |
Empty file.
Empty file.
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,2 @@ | ||
footer | ||
p @ 2015 Sean Sun |
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,10 @@ | ||
meta(charset="utf-8") | ||
meta(name="X-UA-Compatible", content="IE=edge") | ||
|
||
title | ||
block site_title | ||
= config.title | ||
meta(name="description", content= config.description ? config.description : 'A Blog Powered By Hexo') | ||
meta(name="viewport", content="width=device-width, initial-scale=1") | ||
link(rel="short icon", href=url_for("favicon.png")) | ||
link(rel="stylesheet", href=url_for("css/apollo.css")) |
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 @@ | ||
doctype | ||
html(lang=config.language) | ||
head | ||
include head | ||
body | ||
include footer | ||
include scripts |
Empty file.
Empty file.
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 @@ | ||
extends _partial/layout |
Empty file.
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,31 @@ | ||
{ | ||
"name": "hexo-theme-jekyll", | ||
"version": "0.1.0", | ||
"description": "A hexo theme inspire by jekyllrb.com", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/pinggod/hexo-theme-jekyll" | ||
}, | ||
"keywords": [ | ||
"hexo", | ||
"theme", | ||
"jekyll" | ||
], | ||
"author": "Sean Sun", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/pinggod/hexo-theme-jekyll/issues" | ||
}, | ||
"homepage": "https://github.com/pinggod/hexo-theme-jekyll#readme", | ||
"devDependencies": { | ||
"babel-core": "^5.8.25", | ||
"gulp": "^3.9.0", | ||
"gulp-autoprefixer": "^3.0.2", | ||
"gulp-sass": "^2.0.4", | ||
"gulp-sourcemaps": "^1.6.0" | ||
} | ||
} |
Empty file.
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 @@ | ||
@charset "utf-8"; |