diff options
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | app/views/home/_content.html.haml | 10 | ||||
| -rw-r--r-- | app/views/home/index.html.haml | 1 | 
3 files changed, 6 insertions, 7 deletions
| @@ -33,7 +33,7 @@ public/assets/*  public/ca.crt  public/config/*  public/provider.json -# config/config.yml +config/config.yml  config/secrets.yml  public/1/*  vendor/bundle/* diff --git a/app/views/home/_content.html.haml b/app/views/home/_content.html.haml index 6efd2d0..a299295 100644 --- a/app/views/home/_content.html.haml +++ b/app/views/home/_content.html.haml @@ -8,8 +8,8 @@    .col-md-3      = render 'twitter/index' -  - if Rails.env == 'development' -    .row -      %hr -      %p -= link_to "make donation", new_payment_path if APP_CONFIG[:payment].present? +    - 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/index.html.haml b/app/views/home/index.html.haml index 7f07460..5e33e62 100644 --- a/app/views/home/index.html.haml +++ b/app/views/home/index.html.haml @@ -3,7 +3,6 @@    #main      .container-fluid        = render 'home/content' -    #push      -# #push is used for sticky footer in bootstrap 2. remove when upgrading to bootstrap 3  #footer | 
