about summary refs log tree commit diff
path: root/app/views/home/index.html.haml
blob: a663bf37b94130d803d4ef4d49a32f000f52ef3e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
= simple_form_for Status.new, url: statuses_path, method: :post do |f|
  = f.input :text, required: true, autofocus: true, label: false, placeholder: 'What are you up to?'

  .form-actions
    = f.button :submit, 'Post update'

- content_for :raw_content do
  .activity-stream.activity-stream-embedded
    - @timeline.each do |status|
      = render partial: 'stream_entries/status', locals: { status: status }