Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 236216b

Browse filesBrowse files
committed
完成首页的页面搭建
1 parent 773bf7a commit 236216b
Copy full SHA for 236216b

File tree

Expand file treeCollapse file tree

1 file changed

+55
-0
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+55
-0
lines changed

‎src/pages/homePage.vue

Copy file name to clipboard
+55Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
<template>
2+
<div class="home-page container">
3+
<main>
4+
<transition name=el-zoom-in-top>
5+
<div class="alert alert-warning" role="alert" v-show="(this.$store.state.user.email!== undefined) && (!this.$store.state.user.isLogin)">您已经从本站注销,期待您的再次访问,感谢使用!</div>
6+
</transition>
7+
<div class="page-header">
8+
<h1 class='text-center'>ObjC 中国</h1>
9+
</div>
10+
11+
<div class="col-md-10 col-md-offset-1">
12+
<h3 class='text-center subtitle'>为中国 Apple 开发社区带来最佳实践和先进技术</h3>
13+
</div>
14+
15+
16+
<div class="container">
17+
<div class="row">
18+
<div class="index-content col-sm-6">
19+
<div class="boxed-content left-aligned left-boxed-icon">
20+
<span class="icon glyphicon glyphicon-education"></span>
21+
<h2 class="boxed-content-title"><router-link to="/issues/">期刊</router-link></h2>
22+
<p><router-link to="/issues">objc.io 期刊</router-link>自 2013 年中以来,在两年时间内发布了 24 期高质量的 Apple 平台开发相关的文章,内容涉及视图、动画、架构、测试等诸多方面,涵盖了优秀 Apple 开发者需要知道的各项进阶内容。</p>
23+
<p>ObjC 中国项目与 objc.io 展开合作,我们的<a href="https://github.com/objccn/articles/graphs/contributors">志愿者</a>将这些期刊翻译成了中文,以飨广大中文读者。</p>
24+
</div>
25+
<router-link class="btn btn-index btn-lg" to="/issues/">查看期刊专题</router-link></p>
26+
<p class="dim">您也可以访问我们的 <a href="https://github.com/objccn/articles">GitHub 仓库</a>获取所有开源的期刊译文</p>
27+
</div>
28+
<div class="index-content col-sm-6">
29+
<div class="boxed-content left-aligned left-boxed-icon">
30+
<span class="icon glyphicon glyphicon-book"></span>
31+
<h2 class="boxed-content-title"><router-link to="/products/">书籍</router-link></h2>
32+
<p>objc.io 的 Swift <a href="https://www.objc.io/books/">相关书籍</a>质量极高,是自学提高的优秀读物。我们取得了授权,将这些书籍翻译为中文,并以更符合中国开发者的价格进行出售。</p>
33+
<p>ObjC 中国致力于最优秀的翻译作品,希望这些图书能将先进的 Swift 开发技术以更易懂的方式介绍给中文社区的开发者们。</p>
34+
</div>
35+
<router-link class="btn btn-index btn-lg" to="/products/">访问出版书籍</router-link></p>
36+
</div>
37+
</div>
38+
<blockquote class="acknowledge">
39+
<h3>致谢</h3>
40+
<p>在此感谢 <a href="http://objc.io/">objc.io</a> 及其撰稿作者们无私地将他们的知识分享给全世界,感谢本站的<a href="https://github.com/objccn/articles/graphs/contributors">贡献者们</a>为中文 Apple 开发者社区的繁荣和发展做出的不懈努力,也感谢无数开源项目给予我们的帮助和启迪。</p>
41+
<p>我们爱这个世界,愿程序让这个世界变得更美好!</p>
42+
</blockquote>
43+
</div>
44+
</main>
45+
</div>
46+
</template>
47+
48+
<script>
49+
export default {
50+
51+
}
52+
</script>
53+
54+
<style scoped>
55+
</style>

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.