-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
105 lines (87 loc) · 4.32 KB
/
index.html
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>
<html ng-app="guide">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="bower_components/pure/pure-min.css">
<link href="static/style.css" rel="stylesheet" type="text/css">
<link href="static/github.css" rel="stylesheet" type="text/css">
<script src="bower_components/concat.min.js"></script>
<title>Python-cn Guide</title>
<script type="text/ng-template" id="/template/home.html">
<div ng-controller="homeCtrl" class="ng-cloak">
<div markdowntext>
## 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: [email protected]
情怀:
- [一个程序员的情怀](/#/post/pythonista.md)
</div>
</div>
</script>
</head>
<script type="text/ng-template" id="/template/post.html">
<div ng-controller="postCtrl" class="ng-cloak">
<h1>{{post.title}}</h1>
<div markdown ng-model="post.text">
</div>
</div>
</script>
<body>
<div id="layout" class="content pure-g" ng-controller="listCtrl">
<div id="nav" class="pure-u">
<div class="nav-inner">
<button class="primary-button pure-button">Firefly导航</button>
<div class="pure-menu">
<ul class="pure-menu-list ng-cloak">
<li class="pure-menu-item scale-fade" ng-repeat="post in blogList">
<a ng-href="/#/post/{{post.url}}" class="pure-menu-link">{{post.title}}</a
</li>
<li class="pure-menu-heading">链接</li>
<li class="pure-menu-item">
<a href="https://github.com/python-cn" class="pure-menu-link">
<span class="pythoncn-label"></span>Pythoncn
</a>
</li>
<li class="pure-menu-item">
<a href="https://github.com/python-cn/firefly" class="pure-menu-link">
<span class="firefly-label"></span>Firefly
</a>
</li>
<li class="pure-menu-item">
<a href="https://pythoncn.slack.com/" class="pure-menu-link">
<span class="slack-label"></span>Slack
</a>
</li>
<li class="pure-menu-item">
<a href="https://trello.com/b/JM2OEXPA/firefly" class="pure-menu-link">
<span class="tb-label"></span>Trello
</a>
</li>
</ul>
</div>
</div>
</div>
<div id="main" class="pure-u-1">
<div ng-view class="post-animate"></div>
</div>
</div>
<script src="static/main.js"></script>
<link rel="prefetch" href="posts/list.md" />
</body>
</html>