-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
624c3bd
commit f1ea21d
Showing
5 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<div class="blogContainer"> | ||
<article> | ||
<%= blog.blogtext %> | ||
</article> | ||
</div> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<div id="BlogsContainer"> | ||
|
||
<div id="AllBlogs"> | ||
|
||
<%= render @blogs %> | ||
|
||
</div> | ||
</div> |
This file contains 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
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: Vocals, Guitar</div> | ||
<div>Band Member B: Drums</div> | ||
<div>Band Member C: Keyboards</div> | ||
</div> | ||
<div>Booking</div> | ||
<div> | ||
<div>Contact us through facebook</div> | ||
</div> | ||
</div> |
This file contains 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
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> |
This file contains 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
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> |