<%= page_id("#{resource_collection_name}_show") %> <%= page_title("Create a New Post") %>

New Post

<%= form_for(resource, as: :post, html: { remote: true }) do |f| %>

Add your title here

<%= f.label :teaser, 'Teaser (optional)', style: 'padding-top:1em; display:block;' %> <%= f.text_area :teaser, id: 'new_post_teaser' %>

Once you click Create Post! below you will be able to edit things like files/images and the overall content that will be displayed in your post.

<%= render(template: 'transit/interface/post_panel', locals: { form: f }) %> <%= f.hidden_field :title %>

<%= f.button 'Create Post!', class: 'green' %>

<% end %>