diff options
Diffstat (limited to 'app/views/home')
-rw-r--r-- | app/views/home/_content.html.haml | 43 | ||||
-rw-r--r-- | app/views/home/_provider_message.html.haml | 2 |
2 files changed, 33 insertions, 12 deletions
diff --git a/app/views/home/_content.html.haml b/app/views/home/_content.html.haml index d96a1e0..c7902b1 100644 --- a/app/views/home/_content.html.haml +++ b/app/views/home/_content.html.haml @@ -1,12 +1,31 @@ -.row-fluid - %h1= t(:welcome, :provider => APP_CONFIG[:domain]) - .p=t(:welcome_message_html) - -.row-fluid - = home_page_buttons - - - if Rails.env == 'development' - .row-fluid - %hr - %p - = link_to "make donation", new_payment_path if APP_CONFIG[:payment].present? +- if twitter_enabled == true + .col-md-8 + .row + %h1= t(:welcome, :provider => APP_CONFIG[:domain]) + .p=t(:welcome_message_html) + + .row + = home_page_buttons + .row + = render 'home/provider_message' + + .col-md-1 + + .col-md-3 + .row + = render 'twitter/index' +- else + .row + %h1= t(:welcome, :provider => APP_CONFIG[:domain]) + .p=t(:welcome_message_html) + + .row + = home_page_buttons + .row + = render 'home/provider_message' + + - if Rails.env == 'development' + .row + %hr + %p + = link_to "make donation", new_payment_path if APP_CONFIG[:payment].present? diff --git a/app/views/home/_provider_message.html.haml b/app/views/home/_provider_message.html.haml new file mode 100644 index 0000000..928215a --- /dev/null +++ b/app/views/home/_provider_message.html.haml @@ -0,0 +1,2 @@ +-# please overwrite me in your customization files at +-# config/customization/views/home/_provider_message.html.haml |