mirror of
https://github.com/danbee/danbarberphoto
synced 2025-03-04 08:49:07 +00:00
Remove last remnants of HAML
This commit is contained in:
parent
fc80fa8a68
commit
2b75ce90ec
1
Gemfile
1
Gemfile
@ -55,7 +55,6 @@ end
|
|||||||
gem 'administrate'
|
gem 'administrate'
|
||||||
gem 'dragonfly'
|
gem 'dragonfly'
|
||||||
gem 'dragonfly-s3_data_store'
|
gem 'dragonfly-s3_data_store'
|
||||||
gem 'haml'
|
|
||||||
gem 'kaminari'
|
gem 'kaminari'
|
||||||
gem 'monban'
|
gem 'monban'
|
||||||
gem 'monban-generators'
|
gem 'monban-generators'
|
||||||
|
|||||||
@ -133,8 +133,6 @@ GEM
|
|||||||
formatador (0.2.5)
|
formatador (0.2.5)
|
||||||
globalid (0.3.6)
|
globalid (0.3.6)
|
||||||
activesupport (>= 4.1.0)
|
activesupport (>= 4.1.0)
|
||||||
haml (4.0.7)
|
|
||||||
tilt
|
|
||||||
i18n (0.7.0)
|
i18n (0.7.0)
|
||||||
ipaddress (0.8.3)
|
ipaddress (0.8.3)
|
||||||
jmespath (1.2.4)
|
jmespath (1.2.4)
|
||||||
@ -330,7 +328,6 @@ DEPENDENCIES
|
|||||||
dragonfly-s3_data_store
|
dragonfly-s3_data_store
|
||||||
factory_girl_rails
|
factory_girl_rails
|
||||||
fivemat
|
fivemat
|
||||||
haml
|
|
||||||
jquery-rails
|
jquery-rails
|
||||||
kaminari
|
kaminari
|
||||||
kramdown
|
kramdown
|
||||||
|
|||||||
13
app/views/shared/_flash_messages.html.erb
Normal file
13
app/views/shared/_flash_messages.html.erb
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
<% if !flash[:notice].blank? %>
|
||||||
|
<p class="flash notice">
|
||||||
|
<%= flash[:notice] %>
|
||||||
|
<%= link_to raw("×"), "#", class: :close %>
|
||||||
|
</p>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<% if !flash[:alert].blank? %>
|
||||||
|
<p class="flash alert">
|
||||||
|
<%= flash[:alert] %>
|
||||||
|
<%= link_to raw("×"), "#", class: :close %>
|
||||||
|
</p>
|
||||||
|
<% end %>
|
||||||
@ -1,9 +0,0 @@
|
|||||||
- if !flash[:notice].blank?
|
|
||||||
%p.flash.notice
|
|
||||||
= flash[:notice]
|
|
||||||
= link_to raw("×"), "#", class: :close
|
|
||||||
|
|
||||||
- if !flash[:alert].blank?
|
|
||||||
%p.flash.alert
|
|
||||||
= flash[:alert]
|
|
||||||
= link_to raw("×"), "#", class: :close
|
|
||||||
2
app/views/shared/_typekit.html.erb
Normal file
2
app/views/shared/_typekit.html.erb
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
<%= javascript_include_tag "//use.typekit.com/bvi1xdc.js" %>
|
||||||
|
<script>try{Typekit.load();}catch(e){}</script>
|
||||||
@ -1,3 +0,0 @@
|
|||||||
= javascript_include_tag "//use.typekit.com/bvi1xdc.js"
|
|
||||||
:javascript
|
|
||||||
try{Typekit.load();}catch(e){}
|
|
||||||
Loading…
Reference in New Issue
Block a user