Skip to content

Commit 8755ecb

Browse files
committed
Remove: unneeded div nesting
1 parent e365f52 commit 8755ecb

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

views/partials/itemImgInfo.ejs

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,18 @@
11
<% if (HOWTO) { %>
22
<article class="well col-xs-12">
33
<h2>How To</h2>
4-
<div>
5-
<%- HOWTO %>
6-
</div>
4+
<%- HOWTO %>
75
</article>
86
<%}%>
97
<% if (Troubleshooting) { %>
108
<article class="well col-xs-12">
119
<h2>Need Help</h2>
12-
<div>
13-
<%- Troubleshooting %>
14-
</div>
10+
<%- Troubleshooting %>
1511
</article>
1612
<% } %>
1713
<% if ( similarItems.length > 0 ) { %>
1814
<article class="well col-xs-12">
1915
<h2>Similar Items</h2>
20-
<div>
2116
<% for(var i = 0; i < similarItems.length; i++){ %>
2217
<div class='miniSearchItem col-xs-4'>
2318
<% if (!similarItems[i].picture) { %>
@@ -35,7 +30,6 @@
3530
<% } %>
3631
</div>
3732
<% } %>
38-
</div>
3933
</article>
4034
<%}%>
4135
<article class="well col-xs-12">

0 commit comments

Comments
 (0)