Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion latte/en/syntax.texy
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Below is a minimal template that illustrates a few basics elements: tags, n:attr

```latte
{* this is a comment *}
<ul n:if="$items"> {* n:if is n:atribut *}
<ul n:if="$items"> {* n:if is n:attribute *}
{foreach $items as $item} {* tag representing foreach loop *}
<li>{$item|capitalize}</li> {* tag that prints a variable with a filter *}
{/foreach} {* end of cycle *}
Expand Down