= form_for @comment || blog.comments.new, html: { id: "comment-form" } do |f| %fieldset#comment-body-field %blockquote.bubble.rounded.bottom = f.label :body = f.text_area :body %cite.bubble Feel free to post a comment! You may use Markdown. - if @comment and @comment.errors.any? %ul#form-errors - @comment.errors.full_messages.each do |msg| %li= msg %fieldset#comment-other-fields .comment-name-field.comment-field .comment-field-label= f.label :username .comment-field-input= f.text_field :username .comment-email-field.comment-field .comment-field-label= f.label :email .comment-field-input= f.text_field :email, type: :email .comment-website-field.comment-field .comment-field-label= f.label :website, "Website (Optional)" .comment-field-input= f.text_field :website, type: :url .comment-submit-button.comment-field .comment-field-label .comment-field-input= f.submit "Post"