name: "Blue Room" panel_display_name: "Blue Room" panels { name: "RED" path: "Panels/Blue Room/panel_1" clue: "red" answer: "ginger" symbols: SUN } panels { name: "WESTWARD" path: "Panels/Blue Room/panel_2" clue: "westward" answer: "mustard" symbols: SPARKLES } panels { name: "RANGE" path: "Panels/Blue Room/panel_3" clue: "range" answer: "oregano" symbols: SPARKLES symbols: ANAGRAM } panels { name: "PEPPER" path: "Panels/Blue Room/panel_4" clue: "pepper" answer: "salt" symbols: EXAMPLE } panels { name: "TIME" path: "Panels/Blue Room/panel_5" clue: "time" answer: "thyme" symbols: ZERO } panels { name: "SALT" path: "Panels/Blue Room/panel_6" clue: "salt" answer: "pepper" symbols: EXAMPLE } panels { name: "BULB" path: "Panels/Blue Room/panel_7" clue: "bulb" answer: "garlic" symbols: AGE } panels { name: "PAPA" path: "Panels/Blue Room/panel_8" clue: "papa" answer: "paprika" symbols: SPARKLES } panels { name: "MINT" path: "Panels/Blue Room/panel_9" clue: "mint" answer: "pepper" symbols: EXAMPLE } panels { name: "CELEBRATORY" path: "Panels/Blue Room/panel_10" clue: "celebratory" answer: "celery" symbols: SPARKLES } panels { name: "DETECTIVE" path: "Panels/Blue Room/panel_11" clue: "detective" answer: "basil" symbols: EXAMPLE } it' value='switch'/> mixed-content personal blog
about summary refs log tree commit diff stats
path: root/app/views/comments/_form.html.haml
blob: f6df807fa13428e81dae87f836b3672ab3049f55 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
= 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"