Remove production.css
This commit is contained in:
parent
0e252cf93c
commit
d47db8e395
|
@ -7,3 +7,15 @@
|
||||||
font-size: large;
|
font-size: large;
|
||||||
background-color: green;
|
background-color: green;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.widget_index {
|
||||||
|
width: 200px;
|
||||||
|
height: 120px;
|
||||||
|
border: solid;
|
||||||
|
}
|
||||||
|
|
||||||
|
.widget_latest_post{
|
||||||
|
width: 200px;
|
||||||
|
height: 120px;
|
||||||
|
border: solid;
|
||||||
|
}
|
|
@ -1,4 +1,3 @@
|
||||||
<%= stylesheet_link_tag "production"%>
|
|
||||||
<div class="production">
|
<div class="production">
|
||||||
<%= yield %>
|
<%= yield %>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,14 +1,16 @@
|
||||||
<%=stylesheet_link_tag "NewBlog/application"%>
|
<%=stylesheet_link_tag "NewBlog/application"%>
|
||||||
<table>
|
<div class="widget_index">
|
||||||
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<th><%= t('blog.title') %></th>
|
<th><%= t('blog.title') %></th>
|
||||||
<th><%= t('blog.body') %></th>
|
<th><%= t('blog.body') %></th>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<% @posts.each do |post| %>
|
<% @posts.each do |post| %>
|
||||||
<tr>
|
<tr>
|
||||||
<td><%= post.title %></td>
|
<td><%= link_to post.title,panel_blog_post_path(post) %></td>
|
||||||
<td><%= post.body.truncate(14) %></td>
|
<td><%= post.body.truncate(14) %></td>
|
||||||
</tr>
|
</tr>
|
||||||
<% end %>
|
<% end %>
|
||||||
</table>
|
</table>
|
||||||
|
</div>
|
|
@ -1,5 +1,7 @@
|
||||||
<%=stylesheet_link_tag "NewBlog/application"%>
|
<%=stylesheet_link_tag "NewBlog/application"%>
|
||||||
<h2><%= @post.title %> </h2>
|
<div class="widget_latest_post">
|
||||||
<p>
|
<h2><%= @post.title %> </h2>
|
||||||
|
<p>
|
||||||
<%= @post.body %>
|
<%= @post.body %>
|
||||||
</p>
|
</p>
|
||||||
|
</div>
|
Reference in New Issue