Skip to content

Commit

Permalink
FIX: Example was out of date
Browse files Browse the repository at this point in the history
  • Loading branch information
gordonbanderson committed Mar 17, 2018
1 parent 2f2fa42 commit 837cd23
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions docs/en/Usage.md
Expand Up @@ -34,17 +34,16 @@ The parameters are as follows:
* $sort - the order in which to return them


```
<h1>$Title</h1>
$Content
<% loop SplitClassNameDataListIntoGridRows('Page',3, 12) %>
<div class="row">
<% loop Columns %>
<div class="span3"><h4><a href="$Link">$Title</a>
<a href="$Link"><% control Screenshot.SetWidth(300) %><img src="$URL" alt="$Title"/><% end_control %></a>
</h4>
</div><!-- end of span 4 -->
<% end_loop %>
</div><!-- end of row -->
<% end_loop %>
```php
<% loop $SplitClassNameDataListIntoGridRows('Page',3, 12) %>
<div class="row">
<% loop $Columns %>
<div class="span3"><h4><a href="$Link">$Title</a>
<a href="$Link"><% loop $Screenshot.SetWidth(300) %><img src="$URL" alt="$Title"/><% end_loop %></a>
</h4>
</div><!-- end of span 4 -->
<% end_loop %>
</div><!-- end of row -->
<% end_loop %>

```

0 comments on commit 837cd23

Please sign in to comment.