Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Chad Pytel committed Jun 6, 2010
1 parent bc1c83c commit f237036
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 18 deletions.
6 changes: 1 addition & 5 deletions podium/slides/railsconf-2010/_models.haml
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
conditions[:category] = params[:category] if params[:category].present?
conditions[:state] = params[:state] if params[:state].present?

.side
.slide

%h2 Cucumber
:code
Expand All @@ -189,7 +189,3 @@
| Draft Article | draft |
| Review Article | review |
| Published Article | published |

.slide

%h1 Blank
27 changes: 14 additions & 13 deletions podium/slides/railsconf-2010/_views.haml
Original file line number Diff line number Diff line change
Expand Up @@ -30,20 +30,21 @@

.slide

:htmlcode
<div class="post" id="post_<%= @post.id %>">
<h2>Title</h2>
<div class="body">
<%= @post.body %>
.small
:htmlcode
<div class="post" id="post_<%= @post.id %>">
<h2>Title</h2>
<div class="body">
<%= @post.body %>
</div>
<ol class="comments">
<% @post.comments.each do |comment| %>
<li class="comment" id="comment_<%= comment.id %>">
<%= comment.body %>
</li>
<% end %>
</ol>
</div>
<ol class="comments">
<% @post.comments.each do |comment| %>
<li class="comment" id="comment_<%= comment.id %>">
<%= comment.body %>
</li>
<% end %>
</ol>
</div>

.slide

Expand Down

0 comments on commit f237036

Please sign in to comment.