user.jade 766 B

12345678910111213141516171819202122232425262728
  1. extends ../layout
  2. block content
  3. section#partial
  4. .container
  5. .row
  6. .col-sm-6.col-sm-offset-3.text-center
  7. h2 #{user.profile.username}
  8. hr
  9. .row
  10. .col-sm-6.col-sm-offset-3.text-center
  11. ul.list-group
  12. li.list-group-item
  13. if user.profile.picture
  14. img(src='#{user.profile.picture}')
  15. else
  16. img(src='#{user.gravatar()}')
  17. li.list-group-item
  18. p Name: #{user.profile.name}
  19. li.list-group-item
  20. p Username: #{user.profile.username}
  21. li.list-group-item
  22. p Location: #{user.profile.location}
  23. li.list-group-item
  24. p Bio: #{user.profile.bio}
  25. hr
  26. .row