forked from windy/wblog
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
class HomeController < ApplicationController | ||
def index | ||
end | ||
|
||
def mobile | ||
render layout: false | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
if @newest.present? | ||
json.id @newest.id.to_s | ||
json.extract! @newest, :title, :sub_content, :type, :labels_content, :created_at | ||
else | ||
json.null! | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
json.extract! @post, :title, :type, :labels_content, :content_html, :created_at |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
.card | ||
.item.item-divider | ||
| 个人介绍 | ||
.item.item-text-wrap | ||
p | ||
| Hi, 我是技术达人李亚飞. | ||
p | ||
| 你看到的是我的个人博客 APP 版. | ||
p | ||
| 这是一个拥有独立思想的技术达人的交流分享的地方. | ||
p | ||
| 我曾经在深信服工作大约 5 年. 在那里, 从一个菜鸟成长为一个资深工程师, 还有幸带领一个很酷的团队帮助公司进行自动化测试方向的研究与推进. | ||
p | ||
| 在 2014 年 3 月份, 为了那份创业梦, 开发了 http://cywin.cn, 这是一个股权众筹平台, 帮助创业团队更好的融资. 借此, 也将自己的 Ruby on Rails 技术全部注入在内. | ||
p | ||
| 现在, 想先休息一段时间, 接下来做一个自由职业者, 接手一些关于 Web 开发的外包工作. | ||
|
||
.card | ||
.item.item-divider | ||
| 技术栈 | ||
.item.item-text-wrap | ||
ul | ||
li Ruby on Rails | ||
li Linux / OSX | ||
li Git / Svn | ||
li Angularjs | ||
li Bootstrap / Foundation5 | ||
li jQuery | ||
li HTML5 | ||
li CSS3 | ||
li Testing Automation | ||
li Deploying Automation | ||
li PostgreSQL / Mysql / Mongodb | ||
|
||
.card | ||
.item.item-divider | ||
| 联系我 | ||
.item.item-text-wrap | ||
p | ||
| 我目前处于自由职业状态, 如果你想咨询一些创业的项目建议, 甚至期望得到开发方面的帮助, 欢迎联系我. | ||
|
||
p | ||
| 不要紧张, 请随时联系我. | ||
|
||
p | ||
a href="mailto:[email protected]" [email protected] | ||
|
||
.card | ||
.item.item-divider | ||
| 版权说明 | ||
.item.item-text-wrap | ||
p | ||
| WBlog 是我亲手一行行写出来的, 开源可复用, 采用协议 MIT, 你可以在 Github 上找到它: | ||
a href='https://github.com/windy/wblog' https://github.com/windy/wblog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters