Skip to content

Commit

Permalink
mo readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
IceskYsl committed Aug 18, 2012
1 parent a3bbb13 commit 41839d8
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.rvmrc
.bundle
tmp/
coverage/
Expand Down
39 changes: 37 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,41 @@
## Iceylog
Welcome to Iceylog home.
Iceylog is a semantic personal publishing platform with a focus on aesthetics, web standards, and usability.
Iceylog是一款基于Ruby 1.9.3 + Rails3 + MongoDB,支持Markdown语法的个人博客系统~

###系统特色
* 开源
* 基于Ruby 1.9.3 + Rails3 + MongoDB
* 支持 Markdown
* 支持 Disqus
* 尽可能的简单和轻量级
* 支持简单的配置

###系统功能
* 支持文章(post)√
* 支持页面(page) √
* 支持友情链接 √
* 文章支持分类和标签√
* 文章按月归档√
* 文章按tag查看√
* 支持google自定义搜索√
* 支持评论(Disqus)√
* 支持图片上传√
* 代码高亮 √
* 分类合并√
* RSS输出√

###更新纪录
* 2012.8.18: 添加文章的版权作者和链接信息;
* 2012.7.29: 添加RSS订阅功能;
* 2012.7.08: 添加post和page的阅读次数;
* 2012.7.08: 添加分类合并功能;
* 2012.7.08: 添加代码高亮功能(pygments.rb+Redcarpet);
* 2012.7.08: 添加后台图片管理功能;
* 2012.7.08: 添加发布文章时上传图片功能;
* 2012.7.07: 添加发布文章时的预览功能;
* 2012.7.01: 添加按月归档功能;
* 2012.6.30: 添加数据统计功能;
* 2012.6.29: 添加按照tag查看文章功能;
* 2012.6.27: 添加Disqus的评论支持;

## Install

Expand Down Expand Up @@ -29,4 +63,5 @@ Iceylog is a semantic personal publishing platform with a focus on aesthetics, w
###Mac OS X
brew install ImageMagick



7 changes: 6 additions & 1 deletion app/views/posts/show.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,13 @@
</div>
<div class="p-con">
<%=raw @post.body_html%>
</div>
</div>

<div class="p-con-author">
作者: <%= raw SiteConfig.site_author %> <br />
地址: <%=link_to @post.title,post_path(@post)%>
</div>

<div id="disqus_thread"></div>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
Expand Down

0 comments on commit 41839d8

Please sign in to comment.