diff --git a/README.rst b/README.rst index 61826a8..f26d153 100644 --- a/README.rst +++ b/README.rst @@ -125,18 +125,16 @@ is the name of the media query. This attribute returns ``True/False``. Continuing with the example ``RESPONSIVE_MEDIA_QUERIES`` settings above, here’s a simple corresponding template:: -
-
- {% if device.is_iphone %} - - {% endif %} - - ... - -
-
+
+
+ {% if device.is_iphone %} + {# this snippet will only be rendered for retina devices with min_width = 320 #} + + {% endif %} +
+
Quickstart ----------