diff --git a/tools/check.py b/tools/check.py
index d15c5210ba686af2a4a3c7b564538269da2d0d70..843538c59d70def53fcc40ef540986f253a8a33c 100755
--- a/tools/check.py
+++ b/tools/check.py
@@ -456,7 +456,8 @@ class IndexPageValidator(MarkdownValidator):
     DOC_HEADERS = {'layout': vh.is_str,
                    'title': vh.is_str}
 
-    CALLOUTS = {'prereq': ("Prerequisites", 1, 1)}
+    CALLOUTS = {'prereq': ("Prerequisites", 1, 1),
+                'getready': ("Getting ready", 1, 1)}
 
     def _partition_links(self):
         """Check the text of every link in index.md"""
diff --git a/tools/filters/blockquote2div.py b/tools/filters/blockquote2div.py
index 485b77082848e76496dad30a29b5d580d3b32e2a..9339b405730549c7cbabaeb3fa24f716581832f5 100755
--- a/tools/filters/blockquote2div.py
+++ b/tools/filters/blockquote2div.py
@@ -52,6 +52,7 @@ SPECIAL_CLASSES = {
     "callout": ("panel-info", "glyphicon-pushpin"),
     "challenge": ("panel-success", "glyphicon-pencil"),
     "prereq": ("panel-warning", "glyphicon-education"),
+    "getready": ("panel-warning", "glyphicon-check"),
     "objectives": ("panel-warning", "glyphicon-certificate"),
 }