Skip to content

Commit 9cf7acd

Browse files
authored
Fix self-closing div; divs can't be self-closing
1 parent 1cabee2 commit 9cf7acd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/tutorials/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
{% assign tutorials=site.pages | where: "category", "tutorials" | sort: "subject" | group_by: "subject" %}
88

99
<div class="row masonry-container" data-masonry='{ "itemSelector": ".tutorial-panel", "columnWidth": ".grid-sizer", "percentPosition": true }'>
10-
<div class="grid-sizer col-xs-12 col-sm-6 col-md-6"/>
10+
<div class="grid-sizer col-xs-12 col-sm-6 col-md-6"></div>
1111
{% for group in tutorials %}
1212
{% unless group.name == "" %}
1313
<div class="col-xs-12 col-sm-6 col-md-6 tutorial-panel">

0 commit comments

Comments
 (0)