Created
October 9, 2014 17:44
-
-
Save zackn9ne/12092179daa366711abd to your computer and use it in GitHub Desktop.
basic ruby index file
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Artist</title> | |
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> | |
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> | |
<%= csrf_meta_tags %> | |
</head> | |
<body> | |
show some artists | |
<ul> | |
<% @artists.each do |artist| %> | |
<li> | |
<%= artist.name %> | |
</li> | |
<% end %> | |
</ul> | |
~ | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment