-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathour-work.component.html
More file actions
23 lines (23 loc) · 1.19 KB
/
our-work.component.html
File metadata and controls
23 lines (23 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<div class="section">
<div class="container">
<h2 class="title">Our Work</h2>
<ngx-slick-carousel class="carousel project" #slickModal="slick-carousel" [config]="slideConfig">
<div ngxSlickItem *ngFor="let project of projects" class="slide card">
<a (click)="showProjectCard({
image:project.image,
description: project.largeDescription,
name: project.projectName,
github: project.github|| null})">
<img class="card-img-top" src="assets/img/work/{{project.image}}" alt="Project Image">
<div class="card-body">
<h5 class="card-title"><b>{{project.projectName}}
<i *ngIf="project.isWeb" class="fa fa-globe" aria-hidden="true"
style="padding-left:10px;"></i></b>
</h5>
<p class="card-text">{{project.description}}</p>
</div>
</a>
</div>
</ngx-slick-carousel>
</div>
</div>