Skip to content

Instantly share code, notes, and snippets.

View marcfuentes's full-sized avatar

Marcelo Fuentes marcfuentes

  • Chile
  • 10:17 (UTC -12:00)
View GitHub Profile
<div class="row-fluid">
<div class="services_pro col-md-6 col-md-offset-1 ">
<div class="well well large">
<p><h3>Envia un mensaje a <%= @lawyer.name %></h3></p>
<p><%= form_tag({controller: "messages", action: "create"}, method: :post) do %></p>
<%= label_tag :Asunto %>
<p><%= text_field_tag :subject %></p>
<%= label :body, "Mensaje" %>
<p><%= text_area_tag :body %></p>
<%= hidden_field_tag(:lawyer, "#{@lawyer.id}") %>
@marcfuentes
marcfuentes / gist:5953287
Created July 8, 2013 23:12
Bootstrap thumbnails index rails
<ul class='thumbnails' id='posts'>
<% @posts.each do |post| %>
<div id='post'>
<li class='span5'>
<div class='thumbnail'>
<%= image_tag post.picture_url, :width => '100%' if post.picture.present?%>
<h3><%= link_to post.title, post %></h3>
</div>