Skip to content

Commit 716e53b

Browse files
committed
Merge branch 'wi1d5ky-master'
2 parents d109546 + 3049f23 commit 716e53b

File tree

9 files changed

+166
-513
lines changed

9 files changed

+166
-513
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
_site
2+
.sass-cache

_config.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
exclude: [README.md]
2+
defaults:
3+
-
4+
scope:
5+
path: "" # an empty string here means all files in the project
6+
values:
7+
layout: "default"

_layouts/default.html

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<html>
2+
<head>
3+
<meta charset='utf-8'>
4+
<meta http-equiv="X-UA-Compatible" content="chrome=1">
5+
<title>Vim 正體中文社群</title>
6+
<meta name="Generator" content="Vim/7.3">
7+
<meta name="plugin-version" content="vim7.3_v10">
8+
<meta name="syntax" content="mkd">
9+
<meta name="settings" content="use_css,pre_wrap,expand_tabs">
10+
<link rel="stylesheet" type="text/css" href="/style.css" media="screen">
11+
12+
<!--[if lt IE 9]>
13+
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
14+
<![endif]-->
15+
16+
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
17+
18+
</head>
19+
<body>
20+
<a href="https://github.com/vim-tw/vim-tw.github.io" target="_blank">
21+
<img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/365986a132ccd6a44c23a9169022c0b5c890c387/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f7265645f6161303030302e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png">
22+
</a>
23+
24+
<div id="main">
25+
{{ content }}
26+
</div>
27+
28+
</body>
29+
</html>

_sass/variable.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
$font-size: 18px;

index.html

Lines changed: 0 additions & 49 deletions
This file was deleted.

index.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
---
3+
4+
# \# Vim 正體中文社群
5+
6+
討論及分享 Vim 相關技巧的小圈圈,請儘量使用正體中文發言,謝謝。
7+
8+
## \#\# 聯繫管道
9+
10+
- AMA 討論區: [https://github.com/vim-tw/ama](https://github.com/vim-tw/ama){:target="_blank"}
11+
- Telegram 群組聊天室: [https://telegram.me/joinchat/CPYvygKUxvnd8xrGsW26MA](https://telegram.me/joinchat/CPYvygKUxvnd8xrGsW26MA){:target="_blank"}
12+
- Mail list: [https://groups.google.com/forum/?fromgroups#!forum/vim-taiwan](https://groups.google.com/forum/?fromgroups#!forum/vim-taiwan){:target="_blank"}
13+
- IRC: vim-tw@irc.freenode.net
14+
15+
## \# 相關連結
16+
17+
- Facebook 社團: [https://www.facebook.com/groups/vim.tw/](https://www.facebook.com/groups/vim.tw/){:target="_blank"}
18+
- Vim Taiwan @ GitHub: [https://github.com/vim-tw">](https://github.com/vim-tw){:target="_blank"}
19+
- @be&#95;vimmer&#95;tw: [https://twitter.com/be_vimmer_tw](https://twitter.com/be_vimmer_tw){:target="_blank"}
20+
- Vim 推廣貼紙: [https://gist.github.com/chusiang/b608909bccff6ed62eb7](https://gist.github.com/chusiang/b608909bccff6ed62eb7){:target="_blank"}
21+
22+
<p class="Divider">&ndash;&ndash;&ndash;&ndash;</p>
23+
Coypleft (ɔ) from 2015 Vim Taiwan CC BY-NC 2.5 TW.
24+

style.scss

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
---
2+
---
3+
@import "variable";
4+
@import "/stylesheets/normalize.css";
5+
6+
@mixin lineNum-style {
7+
margin-right: 1rem;
8+
width: 2.5rem;
9+
text-align: right;
10+
counter-increment: ln;
11+
content: counter(ln);
12+
color: #605958;
13+
background-color: #151515;
14+
font-weight: 400;
15+
}
16+
17+
body {
18+
counter-reset: ln;
19+
margin: 0;
20+
padding: 0;
21+
font-family: monospace;
22+
color: #e8e8d3;
23+
background-color: #151515;
24+
font-size: $font-size;
25+
}
26+
27+
#main {
28+
padding: 1rem 0;
29+
font-family: monospace;
30+
color: #e8e8d3;
31+
background-color: #151515;
32+
33+
h1, h2, .Divider {
34+
margin: 0;
35+
padding: 0;
36+
color: #70b950;
37+
font-size: $font-size;
38+
font-weight: bold;
39+
40+
&::before {
41+
display: inline-block;
42+
@include lineNum-style;
43+
}
44+
45+
&::after {
46+
display: block;
47+
@include lineNum-style;
48+
}
49+
}
50+
51+
p {
52+
margin: 0;
53+
padding: 0;
54+
55+
&::before {
56+
display: inline-block;
57+
@include lineNum-style;
58+
}
59+
60+
&::after {
61+
display: block;
62+
@include lineNum-style;
63+
}
64+
}
65+
66+
> ul {
67+
list-style-type: none;
68+
margin: 0;
69+
padding: 0;
70+
71+
&::after {
72+
display: block;
73+
@include lineNum-style;
74+
}
75+
76+
li {
77+
&::before {
78+
content: "* ";
79+
color: #c6b6ee;
80+
}
81+
82+
&::after {
83+
float: left;
84+
display: inline-block;
85+
@include lineNum-style;
86+
}
87+
}
88+
}
89+
90+
> div::before {
91+
display: inline-block;
92+
@include lineNum-style;
93+
}
94+
95+
a {
96+
color: #80a0ff;
97+
text-decoration: underline;
98+
99+
&:hover {
100+
color: #70b950;
101+
}
102+
}
103+
}

stylesheets/jellybeans.vim.css

Lines changed: 0 additions & 37 deletions
This file was deleted.

0 commit comments

Comments
 (0)