Created
July 4, 2015 06:45
-
-
Save blairg23/923ee4fcb6eef045843d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="main actor-show"> | |
<div class="container"> | |
<!-- Display an actor's info here --> | |
<div class="actor"> | |
<%= image_tag @actor.image %> | |
<div class="info"> | |
<h3 class="actor-name"><%= @actor.first_name + " " + @actor.last_name %></h3> | |
<p class="actor-bio"><%= @actor.bio %></p> | |
</div> | |
</div> | |
<h2>Movies</h2> | |
<% @movies.each do |movie| %> | |
<div class="movie"> | |
<%= image_tag movie.image %> | |
<h3 class="movie-title"><%= movie.title %></h3> | |
<p class="movie-release-year"><%= movie.release_year %></p> | |
<p class="movie-plot"><%= movie.plot %></p> | |
</div> | |
<% end %> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment