multi-project/projects/app/_modules/pages/home/news/homepage-news.component.html

24 lines
744 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<h2>Новости</h2>
<div class="holder">
<swiper [config]="config"
>
<ng-template ngFor let-item [ngForOf]="items">
<ng-template swiperSlide>
<div class="slide">
<img [src]="item?.poster?.data?.links?.full" />
<a routerLink="{{item?.link}}">
<div class="date" [innerText]="item?.publishDateRus"></div>
<div class="excerpt" [innerText]="item?.name"></div>
</a>
</div>
</ng-template>
</ng-template>
</swiper>
<div class="navigation">
<button class="btn icon prev"></button>
<div class="bullets"></div>
<button class="btn icon next"></button>
</div>
</div>
<div class="more"><a routerLink="/press-tsentr/novosti">Все новости</a></div>