A website template with lots of features, built with ruby on rails.

index.html.erb 710B

12345678910111213141516171819202122232425262728
  1. <div class="hero-unit">
  2. <h1><%= @config.website_name %></h1>
  3. <p><%= @config.tagline %></p>
  4. </div>
  5. <div class="page-header">
  6. <h1><%= t 'blog.latest_posts'%> <%= link_to (t 'blog.more_posts'), blog_path, class: 'btn btn-large pull-right' %></h1>
  7. </div>
  8. <ul class="thumbnails">
  9. <% @blog_posts.each do |post| %>
  10. <li class="span3">
  11. <div class="thumbnail" style="height: 300px;">
  12. <% if post.image.file != nil %>
  13. <%= image_tag post.image.thumb.to_s %>
  14. <% else %>
  15. <img src="http://placehold.it/300x200" alt="">
  16. <% end %>
  17. <h3><%= link_to post.title, post_path(post) %></h3>
  18. <p><%= post.description %></p>
  19. </div>
  20. </li>
  21. <% end %>
  22. </ul>
  23. <br>