Retrospring/app/views/static/index.html.haml

47 lines
1.5 KiB
Plaintext

- if user_signed_in?
.container.j2-page
.col-md-3.col-sm-3.hidden-xs
.panel.panel-default
.panel-body
%p
Welcome,
= current_user.screen_name
- if inbox_count > 0
%p
%strong
You have
= inbox_count
new questions in your inbox!
.row
.col-md-6.col-sm-6.col-xs-6
%h4.entry-text#follower-count= current_user.follower_count
%h6.entry-subtext Follower
.col-md-6.col-sm-6.col-xs-6
%h4.entry-text#friend-count= current_user.friend_count
%h6.entry-subtext Following
.row
.col-md-6.col-sm-6.col-xs-6
%h4.entry-text#asked-count= current_user.asked_count
%h6.entry-subtext Questions
.col-md-6.col-sm-6.col-xs-6
%h4.entry-text#answered-count= current_user.answered_count
%h6.entry-subtext Answers
.col-md-9.col-xs-12.col-sm-9
= render 'layouts/messages'
- current_user.timeline.each do |answer|
= render 'shared/answerbox', a: answer
= render "shared/links"
- else
.jumbotron
.container
= render 'layouts/messages'
%h1 Hi!
%p Ask questions, give answers and learn more about your friends.
%p
%a.btn.btn-primary.btn-lg{href: url_for(new_user_registration_path)}
Register now
%small
Already a member?
= link_to 'Sign in', new_user_session_path
= render "shared/links"