aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/angular/if-else.html
blob: 7854e1bc8c0b9cd0679df91400ef6156dbb6574f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@if (someCondition) {
  <p>someCondition is true</p>
} @else {
  <p>someCondition is false</p>
}

<div>
  @if (someOther) {
    <span>True</span>

    @if (nestedCondition) {
      <span>Nested</span>
    }
  }
</div>