diff --git a/web/app/assets/stylesheets/corp/corporate.css.scss.erb b/web/app/assets/stylesheets/corp/corporate.css.scss.erb index 668403804..2e8ca71d6 100644 --- a/web/app/assets/stylesheets/corp/corporate.css.scss.erb +++ b/web/app/assets/stylesheets/corp/corporate.css.scss.erb @@ -16,6 +16,10 @@ float:left; } +div.test-user-desc { + font-style: italic !important; +} + #nav { margin-top:40px; margin-bottom:30px; diff --git a/web/app/controllers/corps_controller.rb b/web/app/controllers/corps_controller.rb index 3a8025521..c5415af19 100644 --- a/web/app/controllers/corps_controller.rb +++ b/web/app/controllers/corps_controller.rb @@ -18,6 +18,10 @@ class CorpsController < ApplicationController end + def testimonials + + end + def news end diff --git a/web/app/views/corps/media_center.html.erb b/web/app/views/corps/media_center.html.erb index 9652112bf..6d76a17dc 100644 --- a/web/app/views/corps/media_center.html.erb +++ b/web/app/views/corps/media_center.html.erb @@ -28,15 +28,14 @@
<%= image_tag("content/icon_users.png", height: '58', width: '58') %>

-

User Examples

+

User Content



diff --git a/web/app/views/corps/testimonials.html.erb b/web/app/views/corps/testimonials.html.erb new file mode 100644 index 000000000..50726cfcd --- /dev/null +++ b/web/app/views/corps/testimonials.html.erb @@ -0,0 +1,60 @@ +<% provide(:title, 'Testimonials') %> +<% provide(:purpose, 'Testimonials') %> + +

Testimonials

+ +

JULIE BONK

+
Julie is a well-respected and oft-recorded pianist and teacher in jazz and blues improvisation, composition, and theory, and has mentored students including Grammy winner Norah Jones.

+ + +
+ +

JUSTIN PIERCE

+
Justin holds a master's degree in jazz studies, performs regularly with bands in Texas, and has played with John Clayton, The Temptations, Wayne Newton, and others.

+ + +
+ +

CHRIS BENNETT

+
Chris has decades of musical experience in touring bands, has been published in Classic Drummer and Not So Modern Drummer, started Bopworks Drumsticks, and teaches at the Austin School of Music.

+ + +
+ +

SARA NELSON

+
Sara holds a bachelor's degree in music, performs as a cellist for the Austin Lyric Opera, and has also played with the Austin Symphony Orchestra and bands such as David Byrne and Bob Schneider.

+ + +
+ +

GEORGE PRADO

+
George spent 15 years in LA performing and recording with numerous industry greats including Eartha Kitt and Chuck Berry, founded the legendary Regency Jazz Band, and has played and taught 40+ years.

+ + +
+ +

CHRIS MAX

+
Chris is the lead guitar player and backing vocalist for LC Rocks, which has been playing top Austin clubs since 2002, and also frequently plays solo gigs throughout Central Texas.

+ + + \ No newline at end of file diff --git a/web/config/routes.rb b/web/config/routes.rb index a33ad2356..27ad0432b 100644 --- a/web/config/routes.rb +++ b/web/config/routes.rb @@ -90,6 +90,7 @@ SampleApp::Application.routes.draw do match '/contact', to: 'corps#contact', as: 'corp_contact' match '/help', to: 'corps#help', as: 'corp_help' match '/media_center', to: 'corps#media_center', as: 'corp_media_center' + match '/testimonials', to: 'corps#testimonials', as: 'corp_testimonials' match '/news', to: 'corps#news', as: 'corp_news' match '/privacy', to: 'corps#privacy', as: 'corp_privacy' match '/terms', to: 'corps#terms', as: 'corp_terms'