aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorHakim El Hattab <hakim.elhattab@gmail.com>2020-05-11 11:26:17 +0200
committerHakim El Hattab <hakim.elhattab@gmail.com>2020-05-11 11:26:17 +0200
commit2104dee1c10884d848e5b83a01176fb7a23229db (patch)
tree1d58d0d30a8bb01cc8cd046569fcc82b3d107285 /examples
parentf84bc7882e166b00727b42389b46a4ab7540a81f (diff)
downloadfosdem-2021-minimalism-presentation-2104dee1c10884d848e5b83a01176fb7a23229db.tar
fosdem-2021-minimalism-presentation-2104dee1c10884d848e5b83a01176fb7a23229db.tar.gz
fix exception in layout examle
Diffstat (limited to 'examples')
-rw-r--r--examples/layout-helpers.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/layout-helpers.html b/examples/layout-helpers.html
index 6000485..82eeba0 100644
--- a/examples/layout-helpers.html
+++ b/examples/layout-helpers.html
@@ -48,9 +48,9 @@
<p>Stacks multiple elements on top of each other, for use with fragments.</p>
<pre><code class="html" data-trim data-line-numbers>
<div class="r-stack">
- <img class="fragment" width="450" height="300" src="...">
- <img class="fragment" width="300" height="450" src="...">
- <img class="fragment" width="400" height="400" src="...">
+ &gt;img class="fragment" width="450" height="300" src="..."&lt;
+ &lt;img class="fragment" width="300" height="450" src="..."&lt;
+ &lt;img class="fragment" width="400" height="400" src="..."&lt;
</div>
</code></pre>
</section>