Skip to content

Commit 55cbda7

Browse files
committed
init
0 parents  commit 55cbda7

31 files changed

+1746
-0
lines changed

.gitignore

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
*.iml
2+
.idea/
3+
.ipr
4+
.iws
5+
*~
6+
~*
7+
*.diff
8+
*.patch
9+
*.bak
10+
.DS_Store
11+
Thumbs.db
12+
.project
13+
.*proj
14+
.svn/
15+
*.swp
16+
*.swo
17+
*.log
18+
*.sublime-project
19+
*.sublime-workspace
20+
node_modules/
21+
dist/
22+
tmp/
23+
.buildpath
24+
.settings
25+
.yml
26+
_site

Makefile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
clean:
2+
@rm -fr _site
3+
4+
theme = _theme
5+
site:
6+
@nico build --theme ${theme}
7+
8+
server:
9+
@nico server --theme ${theme} --watch
10+
11+
publish: clean site
12+
@ghp-import _site -p
13+
14+
.PHONY: clean site server publish

README.md

Whitespace-only changes.

_theme/README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# One Theme
2+
3+
The One Theme for [nico](http://lab.lepture.com)
4+
5+
----------
6+
7+
8+
## How it looks
9+
10+
![one-theme](https://f.cloud.github.com/assets/290496/8111/f75c1362-4463-11e2-8e8d-4e97fc8878bd.png)

0 commit comments

Comments
 (0)