Add more explanation copy to Rainbow Pool pages
This commit is contained in:
parent
4f9fbc1ac0
commit
1a0fb68b1c
3 changed files with 47 additions and 14 deletions
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
.rainbow-pool-list
|
.rainbow-pool-list
|
||||||
--preview-base-width: 200px
|
--preview-base-width: 200px
|
||||||
|
margin-bottom: 2em
|
||||||
|
|
||||||
.glitched
|
.glitched
|
||||||
cursor: help
|
cursor: help
|
||||||
|
|
|
@ -1,6 +1,15 @@
|
||||||
- title "Rainbow Pool"
|
- title "Rainbow Pool"
|
||||||
- use_responsive_design
|
- use_responsive_design
|
||||||
|
|
||||||
|
:markdown
|
||||||
|
Welcome, welcome! These are all the colors and species of pet we've seen
|
||||||
|
before. You can also check out our [NC Pet Styles][1] listings, too!
|
||||||
|
|
||||||
|
If you've seen a new kind of pet, you can enter its name on the homepage to
|
||||||
|
show us! Thank you so much 💖
|
||||||
|
|
||||||
|
[1]: #{alt_styles_path}
|
||||||
|
|
||||||
= form_with method: :get, class: "rainbow-pool-filters" do |form|
|
= form_with method: :get, class: "rainbow-pool-filters" do |form|
|
||||||
%fieldset
|
%fieldset
|
||||||
%legend Filter by:
|
%legend Filter by:
|
||||||
|
|
|
@ -13,12 +13,35 @@
|
||||||
%li
|
%li
|
||||||
Appearances
|
Appearances
|
||||||
|
|
||||||
|
%p
|
||||||
|
These are the various appearances we've seen for this pet! We've hand-labeled
|
||||||
|
them by their emotion and their gender expression, as best we can.
|
||||||
|
|
||||||
|
%p
|
||||||
|
If you've seen another kind of #{@pet_type.human_name}, you can enter its
|
||||||
|
name on the homepage to show us! Thank you 💖
|
||||||
|
|
||||||
|
- if @pet_states[:canonical].any?(&:glitched?)
|
||||||
|
%p
|
||||||
|
Some of these appearances are marked as "glitched", but it's still the
|
||||||
|
best sample we have. If someone models an unglitched alternative for us,
|
||||||
|
we'll use that instead!
|
||||||
|
|
||||||
%ul.rainbow-pool-list
|
%ul.rainbow-pool-list
|
||||||
= render @pet_states[:canonical]
|
= render @pet_states[:canonical]
|
||||||
|
|
||||||
- if @pet_states[:other].present?
|
- if @pet_states[:other].present?
|
||||||
%details
|
%h3 Other appearances
|
||||||
%summary Other
|
|
||||||
|
%p
|
||||||
|
These are some other appearances we've seen over time!
|
||||||
|
- if @pet_states[:other].any?(&:labeled?)
|
||||||
|
The labeled appearances here don't appear in the outfit editor by
|
||||||
|
default anymore, because they've been replaced by better alternatives.
|
||||||
|
- unless @pet_states[:other].all?(&:labeled?)
|
||||||
|
The unlabeled appearances here <em>might</em> be what we show in the
|
||||||
|
outfit editor later, once we have the chance to label them.
|
||||||
|
|
||||||
%ul.rainbow-pool-list
|
%ul.rainbow-pool-list
|
||||||
= render @pet_states[:other]
|
= render @pet_states[:other]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue