_pages.rhtml

来自「用ruby on rails写的一个博客程序,还不错..ruby on rail」· RHTML 代码 · 共 20 行

RHTML
20
字号
<table cellspacing="1" cellpadding="0"><tr>  <th><%= _("Title")%></th>  <th><%= _("Permalink")%></th>  <th><%= _("Posted at")%></th>  <th colspan="3"><%= _("Action")%></th>  <th></th></tr><% for page in @pages %><tr <%= alternate_class %>>  <td> <%= link_to_permalink(page,page.title) %></td>  <td>/pages/<%= page.name %></td>  <td><%= page.created_at.strftime("%d/%m/%Y at %H:%M") %></td>  <td class="operation"><%= link_to image_tag('show.png', :alt => "View article", :title => "Preview article"), {:action => "show", :id => page.id} %></td>  <td class="operation"><%= link_to_edit page %></td>  <td class="operation"><%= link_to_destroy page %></td>    </tr>  <% end %></table>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?