8 lines
432 B
Plaintext
8 lines
432 B
Plaintext
<h1>New Post</h1>
|
|
<p id="markdown-note">Note: You can use <%= link_to "Markdown", "https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet", target: "_blank" %>!</p>
|
|
<%= simple_form_for @post do |f|%>
|
|
<%= f.input :title, placeholder: "Title" %>
|
|
<%= f.input :content, placeholder: "Text", input_html: {class: "full-width vertical"} %>
|
|
<%= f.submit "Create Post", id: "edit_create_post", class: "btn blue" %>
|
|
<% end %>
|