aboutsummaryrefslogtreecommitdiffstats
path: root/webapp/src/app/home/home.component.html
blob: 568fb9b2e16c7e84e046698249ff2d643a14aaef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<div class="wide">
    <carousel [interval]="carInterval" [(activeSlide)]="activeSlideIndex">
        <slide *ngFor="let sl of slides; let index=index">
            <img [src]="sl.img" [alt]="sl.imgAlt">
            <div class="carousel-caption">
                <h1 *ngIf="sl.hText">{{ sl.hText }}</h1>
                <h1 *ngIf="sl.hHtml" class="html-inner" [innerHtml]="sl.hHtml"></h1>
                <p   *ngIf="sl.text">{{ sl.text }}</p>
                <div *ngIf="sl.html" class="html-inner" [innerHtml]="sl.html"></div>
            </div>
        </slide>
    </carousel>
</div>