Skip to content

Commit

Permalink
Adding stripped content files
Browse files Browse the repository at this point in the history
  • Loading branch information
kilianSweeney committed Feb 3, 2011
1 parent 624c3bd commit f1ea21d
Show file tree
Hide file tree
Showing 5 changed files with 51 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/views/example_site/_blog.html.erb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<div class="blogContainer">
<article>
<%= blog.blogtext %>
</article>
</div>
8 changes: 8 additions & 0 deletions app/views/example_site/blogs.html.erb
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<div id="BlogsContainer">

<div id="AllBlogs">

<%= render @blogs %>

</div>
</div>
17 changes: 17 additions & 0 deletions app/views/example_site/everything.html.erb
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<div>
<div>Example Band Info</div>
<div>
<div><%= link_to 'YourBand!Myspace', myspace_path %></div>
<div><%= link_to 'YourBande!Facebook', facebook_path %></div>
</div>
<div>Lineup</div>
<div>
<div>Band Member A:&nbsp;Vocals, Guitar</div>
<div>Band Member B:&nbsp;Drums</div>
<div>Band Member C:&nbsp;Keyboards</div>
</div>
<div>Booking</div>
<div>
<div>Contact us through facebook</div>
</div>
</div>
11 changes: 11 additions & 0 deletions app/views/example_site/index.html.erb
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Your Band</title>
<%= stylesheet_link_tag 'your_style_sheet', :media => 'screen' %>
</head>
<body>
This is the example band frontpage
</body>
</html>
10 changes: 10 additions & 0 deletions app/views/example_site/shows.html.erb
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<div id="ShowsContainer">
<div>Upcoming Shows</div>
<div id="UpcomingShows">
<%= render @upcoming_shows %>
</div>
<div>Past Shows</div>
<div id="PastShows">
<%= render @past_shows %>
</div>
</div>

0 comments on commit f1ea21d

Please sign in to comment.