diff --git a/app/views/example_site/_blog.html.erb b/app/views/example_site/_blog.html.erb new file mode 100644 index 0000000..f069f38 --- /dev/null +++ b/app/views/example_site/_blog.html.erb @@ -0,0 +1,5 @@ +
+
+ <%= blog.blogtext %> +
+
\ No newline at end of file diff --git a/app/views/example_site/blogs.html.erb b/app/views/example_site/blogs.html.erb new file mode 100644 index 0000000..304f5cb --- /dev/null +++ b/app/views/example_site/blogs.html.erb @@ -0,0 +1,8 @@ +
+ +
+ + <%= render @blogs %> + +
+
\ No newline at end of file diff --git a/app/views/example_site/everything.html.erb b/app/views/example_site/everything.html.erb new file mode 100644 index 0000000..b687ba0 --- /dev/null +++ b/app/views/example_site/everything.html.erb @@ -0,0 +1,17 @@ +
+
Example Band Info
+
+
<%= link_to 'YourBand!Myspace', myspace_path %>
+
<%= link_to 'YourBande!Facebook', facebook_path %>
+
+
Lineup
+
+
Band Member A: Vocals, Guitar
+
Band Member B: Drums
+
Band Member C: Keyboards
+
+
Booking
+
+
Contact us through facebook
+
+
\ No newline at end of file diff --git a/app/views/example_site/index.html.erb b/app/views/example_site/index.html.erb new file mode 100644 index 0000000..ce5ca5f --- /dev/null +++ b/app/views/example_site/index.html.erb @@ -0,0 +1,11 @@ + + + + + Your Band + <%= stylesheet_link_tag 'your_style_sheet', :media => 'screen' %> + + + This is the example band frontpage + + \ No newline at end of file diff --git a/app/views/example_site/shows.html.erb b/app/views/example_site/shows.html.erb new file mode 100644 index 0000000..85cf4ad --- /dev/null +++ b/app/views/example_site/shows.html.erb @@ -0,0 +1,10 @@ +
+
Upcoming Shows
+
+ <%= render @upcoming_shows %> +
+
Past Shows
+
+ <%= render @past_shows %> +
+
\ No newline at end of file