Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
Latest commit
105 lines (87 loc) · 4.32 KB
/
Copy pathindex.html
File metadata and controls
105 lines (87 loc) · 4.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE HTML>
<htmlng-app="guide">
<head>
<metahttp-equiv="content-type" content="text/html; charset=utf-8" />
<metaname="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<metahttp-equiv="X-UA-Compatible" content="IE=edge">
<linkrel="stylesheet" href="bower_components/pure/pure-min.css">
<linkhref="static/style.css" rel="stylesheet" type="text/css">
<linkhref="static/github.css" rel="stylesheet" type="text/css">
<scriptsrc="bower_components/concat.min.js"></script>
<title>Python-cn Guide</title>
<scripttype="text/ng-template" id="/template/home.html">
<divng-controller="homeCtrl"class="ng-cloak">
<divmarkdowntext>
## Firefly招募开发者
我们想做一个中国python用户的社区. 我们敬重为python贡献青春的你.
我们也欢迎在算法/前端/设计方面有能力的同学们, 这个社区同样有很多东西等你来
**WARNING** 我们最近在做嵌入react的工作,其他工作暂停迭代(防止新的代码造冲突).
具体讨论可见: [Issue92](https://github.com/python-cn/firefly/issues/92),开发详情请关注[trello](https://trello.com/b/JM2OEXPA/firefly)
愿景:
* 社区不是一个人的或者几个人写的, 而是很多人贡献代码产生的(包含基本的功能).
* 有豆瓣上有的的一些社交功能. 高度定制, 智能推荐.
* 给pythonista提供一个学习, 交流, 找工作等方面的一个平台
* 能像ruby-china一样说: `这里就是 Python 社区,目前这里已经是国内最权威的 Python 社区,拥有国内所有资深的 Python 工程师`
* 这个社区能开源一些相关的有用的库/代码.
* 把一些其他项目上很cool的idea放到社区上.
* 程序员的社区, 尽量让各种级别的Geek都喜欢
链接:
- GitHub: https://github.com/python-cn/firefly
- Slack: https://pythoncn.slack.com
- Email: ciici123@gmail.com
情怀:
- [一个程序员的情怀](/#/post/pythonista.md)
</div>
</div>
</script>
</head>
<scripttype="text/ng-template" id="/template/post.html">
<divng-controller="postCtrl"class="ng-cloak">
<h1>{{post.title}}</h1>
<divmarkdownng-model="post.text">
</div>
</div>
</script>
<body>
<divid="layout" class="content pure-g" ng-controller="listCtrl">
<divid="nav" class="pure-u">
<divclass="nav-inner">
<buttonclass="primary-button pure-button">Firefly导航</button>
<divclass="pure-menu">
<ulclass="pure-menu-list ng-cloak">
<liclass="pure-menu-item scale-fade" ng-repeat="post in blogList">
<ang-href="/#/post/{{post.url}}" class="pure-menu-link">{{post.title}}</a
</li>
<liclass="pure-menu-heading">链接</li>
<liclass="pure-menu-item">
<ahref="https://github.com/python-cn" class="pure-menu-link">
<spanclass="pythoncn-label"></span>Pythoncn
</a>
</li>
<liclass="pure-menu-item">
<ahref="https://github.com/python-cn/firefly" class="pure-menu-link">
<spanclass="firefly-label"></span>Firefly
</a>
</li>
<liclass="pure-menu-item">
<ahref="https://pythoncn.slack.com/" class="pure-menu-link">
<spanclass="slack-label"></span>Slack
</a>
</li>
<liclass="pure-menu-item">
<ahref="https://trello.com/b/JM2OEXPA/firefly" class="pure-menu-link">
<spanclass="tb-label"></span>Trello
</a>
</li>
</ul>
</div>
</div>
</div>
<divid="main" class="pure-u-1">
<divng-viewclass="post-animate"></div>
</div>
</div>
<scriptsrc="static/main.js"></script>
<linkrel="prefetch" href="posts/list.md" />
</body>
</html>