Skip to content

Commit

Permalink
Add new version v1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yangjian committed Jan 19, 2014
1 parent f901ff5 commit 68b0a4a
Show file tree
Hide file tree
Showing 81 changed files with 6,112 additions and 0 deletions.
7 changes: 7 additions & 0 deletions LICENSE
@@ -0,0 +1,7 @@
Copyright (c) 2014 Yang Jian

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.
114 changes: 114 additions & 0 deletions README.md
@@ -0,0 +1,114 @@
# Pacman

Pacman is a flat and responsive design theme for [Hexo](http://zespia.tw/hexo/).

[Demo](http://A-limon.github.io/pacman) || [Alimon's Blog](http://yangjian.me)

中文说明请访问[这里](http://A-limon.github.io/pacman/hello/introducing-pacman-theme/)
##Installation
###Install
```
$ git clone https://github.com/A-limon/pacman.git themes/pacman
```
**Pacman requires Hexo 2.4.5 and above.**
###Enable
Modify `theme` setting in blog folder` _config.yml` to `pacman`.
###Update
```
cd themes/pacman
git pull
```
**please backup your `_config.yml` file before update.**
##Configuration

Modify settings in `/themes/pacman/_config.yml`.

```
##### Menu
menu:
Home: /
Archives: /archives
## you can create `tags` and `categories` folders in `../source`.
## And create a `index.md` file in each of them.
## set `front-matter`as
## layout: tags (or categories)
## title: tags ( or categories)
## ---
#### Widgets
widgets:
- category
- tag
- rss
## provide six widgets :category,tag,rss,archive,tagcloud,links.
## modify links in `/layout/_widget/links.ejs`.
#### RSS
rss: ## RSS address.
#### Image
imglogo:
enable: true ## display image logo true/false.
src: /img/logo.svg ## '.svg' and '.png' are recommended,please put image into the theme folder '/pacman/source/img'.
favicon: /img/favicon.ico ## size:16px*16px,'.ico' is recommended,please put image into the theme folder '/pacman/source/img' .
apple_icon: /img/pacman.jpg ## size:64px*64px,please put image into the theme folder '/pacman/source/img'.
#### Author Avatar Picture
dataURI: true
## if the picture's format is dataURI please set the value to true,otherwise set the value to false.
## convert an image into base 64 data URIs http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/ .
author_img_data: ''
## paste the dataURI in ONE LINE and included it by ''.
author_img: /img/author.jpg ## size:220px*220px.
## if the picture's format is '.png' or '.jpg' instead of dataURI,you should set the 'dataURI' value to false.
#### Font
ShowCustomFont: true
## you can change custom font in 'variable.styl' and 'font.styl' which in the theme folder '/pacman/source/css'.
#### Toc
toc:
article: true ## show contents in article
aside: true ## show contents in aside
## you can set both of the value to true of neither of them.
## if you don't want display contents in a specified post,you can modify `front-matter` and add `toc: false`.
#### Fancybox
fancybox: fasle
## if you use gallery post or want use fancybox please set the value to true.
## if you want use fancybox in ANY post please copy the file 'fancybox.js'.
## in theme folder '/pacman/scripts' to your hexo blog folder '../scritps'.
#### Author information
author:
google_plus: 116338260303228776998 ## eg:116338260303228776998 for https://plus.google.com/u/0/116338260303228776998
intro_line1: "Hi,I'm the designer of this theme." ## eg: "Hello ,I'm Larry Page in Google."
intro_line2: "I hope you can enjoy the Pacman theme for Hexo!" ## eg: "This is my blog,believe it or not."
weibo: 436062867 ## e.g. 436062867 for http://weibo.com/436062867
twitter: yangjiansky ## e.g. yangjiansky for https://twitter.com/yangjiansky
github: A-limon ## e.g. A-limon for https://github.com/A-limon
facebook: yangjian ## e.g. yangjian for https://favebook.com/yangjian
tsina: 1664838973 ## e.g. 1664838973 Your weibo ID,It will be used in share button.
#### Comment
duoshuo:
enable: true ## duoshuo.com
short_name: alimon ## duoshuo short name.
#### Share button
jiathis:
enable: false ## if you use jiathis as your share tool,the built-in share tool won't be display.
id: 1501277 ## e.g.1501277 your jiathis ID.
tsina: 1664838973 ## e.g.1664838973 Your weibo id,It will be used in share button.
#### Analytics
google_analytics:
enable: false
id: ## e.g. UA-1766729-8 your google analytics ID.
site: ## e.g. yangjian.me your google analytics site or set the value as auto.
## You MUST upgrade to Universal Analytics first!
## https://developers.google.com/analytics/devguides/collection/upgrade/?hl=zh_CN
```


88 changes: 88 additions & 0 deletions _config.yml
@@ -0,0 +1,88 @@
##### Menu
menu:
Home: /
Archives: /archives
## you can create `tags` and `categories` folders in `../source`.
## And create a `index.md` file in each of them.
## set `front-matter`as
## layout: tags (or categories)
## title: tags ( or categories)
## ---

#### Widgets
widgets:
- category
- tag
- archive
- tagcloud
- links
- rss
## provide six widgets:category,tag,rss,archive,tagcloud,links.
## modify links in `/layout/_widget/links.ejs`.

#### RSS
rss: ## RSS address.

#### Image
imglogo:
enable: true ## display image logo true/false.
src: /img/logo.svg ## '.svg' and '.png' are recommended,please put image into the theme folder '/pacman/source/img'.
favicon: /img/favicon.ico ## size:16px*16px,'.ico' is recommended,please put image into the theme folder '/pacman/source/img'.
apple_icon: /img/pacman.jpg ## size:64px*64px,please put image into the theme folder '/pacman/source/img'.

#### Author Avatar Picture
dataURI: false
## if the picture's format is dataURI please set the value to true,otherwise set the value to false.
## convert an image into base 64 data URIs http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/ .
author_img_data: ''
## paste the dataURI in ONE LINE and included it by ''.
author_img: /img/author.jpg ## size:220px*220px.
## if the picture's format is '.png' or '.jpg' instead of dataURI,you should set the 'dataURI' value to false.

#### Font
ShowCustomFont: true
## you can change custom font in 'variable.styl' and 'font.styl' which in the theme folder '/pacman/source/css'.

#### Toc
toc:
article: true ## show contents in article.
aside: true ## show contents in aside.
## you can set both of the value to true of neither of them.
## if you don't want display contents in a specified post,you can modify `front-matter` and add `toc: false`.

#### Fancybox
fancybox: false
## if you use gallery post or want use fancybox please set the value to true.
## if you want use fancybox in ANY post please copy the file 'fancybox.js'.
## in theme folder '/pacman/scripts' to your hexo blog folder '../scritps'.

#### Author information
author:
google_plus: ## eg:116338260303228776998 for https://plus.google.com/u/0/116338260303228776998
intro_line1: "" ## eg: "Hello ,I'm Larry Page in Google."
intro_line2: "" ## eg: "This is my blog,believe it or not."
weibo: ## e.g. 436062867 for http://weibo.com/436062867
twitter: ## e.g. yangjiansky for https://twitter.com/yangjiansky
github: ## e.g. A-limon for https://github.com/A-limon
facebook: ## e.g. yangjian for https://favebook.com/yangjian
tsina: ## e.g. 1664838973 Your weibo ID,It will be used in share button.

#### Comment
duoshuo:
enable: false ## duoshuo.com
short_name: ## duoshuo short name.

#### Share button
jiathis:
enable: false ## if you use jiathis as your share tool,the built-in share tool won't be display.
id: ## e.g. 1501277 your jiathis ID.
tsina: ## e.g. 1664838973 Your weibo id,It will be used in share button.

#### Analytics
google_analytics:
enable: false
id: ## e.g. UA-1766729-8 your google analytics ID.
site: ## e.g. yangjian.me your google analytics site or set the value as auto.
## You MUST upgrade to Universal Analytics first!
## https://developers.google.com/analytics/devguides/collection/upgrade/?hl=zh_CN

18 changes: 18 additions & 0 deletions languages/default.yml
@@ -0,0 +1,18 @@
categories: Categories
search: Search
tags: Tags
tagcloud: Tag Cloud
prev: Prev
next: Next
comment: Comments
contents: Contents
archive_a: Archives
archive_b: Archives: %s
page: Page %d
recent_posts: Recent Posts
menu: Menu
links: Links
rss: RSS
showsidebar: Show Sidebar
hidesidebar: Hide Sidebar
updated: Updated
18 changes: 18 additions & 0 deletions languages/zh-CN.yml
@@ -0,0 +1,18 @@
categories: 分类
search: 搜索
tags: 标签
tagcloud: 标签云
prev: 上一页
next: 下一页
comment: 文章评论
contents: 文章目录
archive_a: 归档
archive_b: 归档:%s
page: 第 %d 页
recent_posts: 近期文章
menu: 菜单
links: 友情链接
rss: RSS 订阅
showsidebar: 显示侧边栏
hidesidebar: 隐藏侧边栏
updated: 更新日期
18 changes: 18 additions & 0 deletions languages/zh-TW.yml
@@ -0,0 +1,18 @@
categories: 分類
search: 搜索
tags: 標簽
tagcloud: 標簽雲
prev: 上一頁
next: 下一頁
comment: 文章評論
contents: 文章目錄
archive_a: 歸檔
archive_b: 歸檔:%s
page: 第 %d 頁
recent_posts: 近期文章
menu: 菜單
links: 友情鏈接
rss: RSS 訂閱
showsidebar: 顯示側邊欄
hidesidebar: 隱藏側邊欄
updated: 更新日期

0 comments on commit 68b0a4a

Please sign in to comment.