Similar to *ngIf in Angular, Jael supports a simple if directive. Use if to only an element if a certain condition is true:

    1. <i if=user.locale == 'en'>
    2. Hello, {{ user.name }}!
    3. </i>
    4. <i if=user.locale == 'jp'>
    5. こんにちは, {{ user.name }}!
    6. </i>