From 3c12ed3ef6f9a3628e3fb44eb4ae5bd671d3033f Mon Sep 17 00:00:00 2001 From: Greg Wilson Date: Tue, 26 Apr 2016 08:36:29 -0400 Subject: [PATCH] Switching from .getready to .checklist --- _episodes/02-formatting.md | 9 ++++++--- assets/css/lesson.scss | 2 +- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/_episodes/02-formatting.md b/_episodes/02-formatting.md index c397018..843a6d6 100644 --- a/_episodes/02-formatting.md +++ b/_episodes/02-formatting.md @@ -171,14 +171,17 @@ for the following special blockquotes: * `.callout`: an aside or other comment. * `.challenge`: an exercise. -* `.getready`: preparatory material. +* `.checklist`: checklists. * `.keypoints`: key points of an episode. * `.objectives`: episode objectives. -* `.prereq`: lesson prerequisites. +* `.prereq`: prerequisites. * `.testimonial`: a laudatory quote from a user. -Most authors will only use `.callout` and `.challenge`, +Most authors will only use `.callout`, `.challenge`, and `.prereq`, as the others are automatically generated by the template. +Note that `.prereq` is meant for describing things that learners should know before starting this lesson; +setup instructions do not have a particular style, +but are instead put on the `setup.md` page. [jekyll]: http://jekyllrb.com/ [jekyll-collection]: https://jekyllrb.com/docs/collections/ diff --git a/assets/css/lesson.scss b/assets/css/lesson.scss index 2f933b8..604245e 100644 --- a/assets/css/lesson.scss +++ b/assets/css/lesson.scss @@ -71,7 +71,7 @@ $codeblock-padding: 5px !default; .callout{ @include bkSetup(#31708f, "\e146"); } .challenge{ @include bkSetup(#3c763d, "\270f"); } -.getready{ @include bkSetup(#D4C30B, "\e067"); } +.checklist{ @include bkSetup(#D4C30B, "\e067"); } .keypoints{ @include bkSetup(#0B80F0, "\e101"); } .objectives{ @include bkSetup(#D4C30B, "\e124"); } .prereq{ @include bkSetup(#D4C30B, "\e240"); }