Skip to content

Commit 92aee51

Browse files
committed
new blog style
1 parent 6fd9aa3 commit 92aee51

File tree

270 files changed

+659
-14399
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

270 files changed

+659
-14399
lines changed

404.html

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
---
2-
layout: page
3-
title: 404
4-
tagline: Page does't exist
2+
layout: default
3+
title: "not found page!"
54
---
6-
{% include JB/setup %}
75

8-
<h2 class="post-title">404 - U R Lost!!!</h2>
9-
<p>您光临了我的 <b>404</b><sup>&reg;</sup><i>页面!</i></p>
10-
<p>网站结构调整,请使用<b></b>侧的 <b>搜索</b><span style="color:red;">前往 <b><a href="/archive.html">归档</a></b> 页面自行探索!</span></p>
11-
<p><img src="{{ site.JB.IMAGE_PATH }}/404.png" width="425" height="427" alt="U R Lost!!!" title="U R Lost!!!" /></p>
6+
<p align="center">
7+
<h1></h1>NOT FOUND PAGE!</h1>
8+
9+
<br/>
10+
<br/>
11+
thanks!
12+
</p>

CNAME

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
coolshell.info
1+
www.coolshell.info

LICENSE

-21
This file was deleted.

README.md

+34-46
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,34 @@
1-
# Jekyll-Bootstrap
2-
3-
The quickest way to start and publish your Jekyll powered blog. 100% compatible with GitHub pages
4-
5-
## Usage
6-
7-
For all usage and documentation please see: <http://jekyllbootstrap.com>
8-
9-
## Version
10-
11-
0.3.0 - stable and versioned using [semantic versioning](http://semver.org/).
12-
13-
**NOTE:** 0.3.0 introduces a new theme which is not backwards compatible in the sense it won't _look_ like the old version.
14-
However, the actual API has not changed at all.
15-
You might want to run 0.3.0 in a branch to make sure you are ok with the theme design changes.
16-
17-
## Contributing
18-
19-
This repository tracks 2 projects:
20-
21-
- **Jekyll-Bootstrap Framework.**
22-
The framework for which users should clone and build their blog on top of is available in the master branch.
23-
24-
To contribute to the framework please make sure to checkout your branch based on `jb-development`!!
25-
This is very important as it allows me to accept your pull request without having to publish a public version release.
26-
27-
Small, atomic Features, bugs, etc.
28-
Use the `jb-development` branch but note it will likely change fast as pull requests are accepted.
29-
Please rebase as often as possible when working.
30-
Work on small, atomic features/bugs to avoid upstream commits affecting/breaking your development work.
31-
32-
For Big Features or major API extensions/edits:
33-
This is the one case where I'll accept pull-requests based off the master branch.
34-
This allows you to work in isolation but it means I'll have to manually merge your work into the next public release.
35-
Translation : it might take a bit longer so please be patient! (but sincerely thank you).
36-
37-
- **Jekyll-Bootstrap Documentation Website.**
38-
The documentation website at <http://jekyllbootstrap.com> is maintained in the gh-pages branch.
39-
Please fork and contribute documentation additions to this branch only.
40-
41-
The master and gh-pages branch do not share the same ancestry. Please treat them as completely separate git repositories!
42-
43-
44-
## License
45-
46-
[MIT](http://opensource.org/licenses/MIT)
1+
我的个人博客
2+
================
3+
4+
####博客地址
5+
http://www.coolshell.info
6+
7+
####使用本项目作为博客模板,仅需如下几步:
8+
1,首先Fork或Download一份本项目代码。
9+
2,修改_config.yaml及about.md文件,以变更个人信息。
10+
3,修改_include目录下相关文件,以配置网站统计(analytics.html),网友评论(comment.html),右侧栏目(categories.html)等。
11+
4,修改CNAME文件,以绑定自己的域名。
12+
5,删除_posts下文章,换成你自己的。
13+
6,最后,push到你自己的博客Repo~
14+
15+
*^_^*如果愿意,Star本项目一个吧~
16+
17+
####本项目使用了
18+
1,CNZZ的网站统计服务,官网:http://cnzz.com
19+
2,友言的网友评论服务,官网:http://www.uyan.cc
20+
3,Google 的Adsense广告,官网:https://www.google.com/adsense/login/zh_CN
21+
如需查看或管理网站统计、评论或广告,请自行注册帐号并修改_includes目录下相关文件。
22+
23+
####联系方式
24+
联系方式:qq(934107508), email([email protected])
25+
26+
27+
####使用本项目作模板的博客链接
28+
http://www.94geek.com
29+
http://www.haidaoxiaofei.me
30+
http://www.malphi.net
31+
http://happyaround.com
32+
http://tencentlocation.github.io
33+
http://wtaps.github.io
34+
(你的位置)

_config.yml

+15-21
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
1-
# This is the default format.
2-
# For more see: https://github.com/mojombo/jekyll/wiki/Permalinks
3-
# permalink: /:categories/:year/:month/:day/:title
41
permalink: /blog/:year/:month/:title.html
52
include: ['.htaccess']
63
exclude: [".rvmrc", ".rbenv-version", "README.md", "Rakefile", "changelog.md", "CNAME", "Gemfile", "Gemfile.lock"]
7-
# markdown: redcarpet
84
markdown: kramdown
95
highlights: pygments
6+
url:
107
lsi: false
8+
safe: true
119
timezone: Asia/Shanghai
12-
safe: false
10+
auto: false
1311

14-
paginate: 15
12+
paginate: 8
1513
paginate_path: "page:num"
1614

1715
kramdown:
@@ -21,19 +19,15 @@ kramdown:
2119
toc_levels: 1..6
2220
use_coderay: false
2321

24-
JB :
25-
ASSET_PATH : http://coolshell.info/assets
26-
IMAGE_PATH : http://coolshell.info/images
27-
# auto: true # deprecated
28-
29-
# Themes are encouraged to use these universal variables
30-
# so be sure to set them if your theme uses them.
31-
#
32-
url: http://coolshell.info
22+
# presonal config
23+
domain: http://coolshell.info
3324
title: Lippi-浮生志
34-
tagline: Draw my life with code
35-
about: <a href="http://coolshell.info/"><strong>Lippi</strong></a>,江西人士,Web后端、Android应用开发爱好者,欢迎<strong>Fork</strong>本站@<a href="https://github.com/LippiOuYang/LippiOuYang.github.io/fork">Github</a>。
36-
author:
37-
name: Lippi.OuYang
38-
39-
github: LippiOuYang
25+
description: Draw my life with code
26+
author: Lippi.OuYang
27+
28+
github: LippiOuYang
29+
30+
config:
31+
js_dir:
32+
img_dir:
33+
css_dir:

_includes/JB/categories_list

-33
This file was deleted.

_includes/JB/liquid_raw

-32
This file was deleted.

_includes/JB/pages_list

-39
This file was deleted.

_includes/JB/posts_collate

-51
This file was deleted.

_includes/JB/setup

-22
This file was deleted.

0 commit comments

Comments
 (0)