Plik: htmll.txt

<div>
  <h1>Kategorie zdjęć</h1>
  <label>
    <input type="checkbox" checked="true" (change)="toggleCategory('flowers')" />
    Kwiaty
  </label>
  <label>
    <input type="checkbox" checked="true" (change)="toggleCategory('animals')" />
    Zwierzęta
  </label>
  <label>
    <input type="checkbox" checked="true" (change)="toggleCategory('cars')" />
    Samochody
  </label>
</div>

<div class="image-container">
  <div *ngFor="let image of filteredImages" class="image-block">
    <img [src]="'assets/' + image.filename" [alt]="image.alt" />
    <h4>Pobrania: {{ image.downloads }}</h4>
    <button (click)="downloadImage(image)">Pobierz</button>
  </div>
</div>