mirror of
https://github.com/Growstuff/growstuff.git
synced 2025-12-30 21:17:50 -05:00
* Add dep * Add tests around accessibility * Add examples in a few places * Try to fix screenshots * Remove redundant role * Adjust rules, colors, etc so tests pass * Update app/assets/stylesheets/overrides.scss * Wrap in label * Omit rule, which is failing with a false positive * Update index.haml * Update _blurb.html.haml
27 lines
928 B
Plaintext
27 lines
928 B
Plaintext
.card.col-md-8.col-lg-7.mx-auto.float-none.white.z-depth-1.py-2.px-2
|
|
.card-body
|
|
- if content_for? :title
|
|
%h1.h2-responsive.text-center
|
|
%strong=yield :title
|
|
= form_for(@comment, html: { class: "form-horizontal" }) do |f|
|
|
- if @comment.errors.any?
|
|
#error_explanation
|
|
%h2
|
|
= pluralize(@comment.errors.size, "error")
|
|
prohibited this comment from being saved:
|
|
%ul
|
|
- @comment.errors.full_messages.each do |msg|
|
|
%li= msg
|
|
|
|
.md-form
|
|
= f.text_area :body, rows: 6, class: 'form-control md-textarea', autofocus: 'autofocus'
|
|
= f.label :body, "Your comment:"
|
|
|
|
%span.help-block
|
|
= render partial: "shared/markdown_help"
|
|
.actions.text-right
|
|
= f.submit 'Post comment', class: 'btn btn-primary'
|
|
- if defined?(@post)
|
|
.field
|
|
= f.hidden_field :post_id, value: @post.id
|