Retrospring/app/views/layouts/notifications.haml

13 lines
322 B
Plaintext
Raw Normal View History

= render 'navigation/notification'
.container.container--main
2020-04-25 08:51:00 -07:00
.row
.col-md-3.col-xs-12.col-sm-4
= render 'tabs/notifications'
.col-md-9.col-xs-12.col-sm-8
= yield
2020-05-10 04:10:47 -07:00
:ruby
Notification.for(current_user).update_all(new: false)
provide(:title, generate_title('Notifications'))
parent_layout 'base'