-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathproject-card.component.html
More file actions
30 lines (30 loc) · 1.24 KB
/
project-card.component.html
File metadata and controls
30 lines (30 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<div class="project-modal">
<div class="modal-header no-border-header">
<h5 class="modal-title text-center"> </h5>
<button type="button" class="close" aria-label="Close" (click)="close()">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<img src="assets/img/work/{{data.image}}" class="img-rounded" style="height:60%;width:60%;">
<h5 class="modal-title text-center">{{data.name}}</h5>
<div class="project-description">{{data.description}}</div>
<div class="row justify-content-center social-media-links">
<div *ngIf="data.github">
<div class="checkProjects">Check Out The Project!</div>
<div class="row justify-content-center social-media-links">
<div class="col-xs-4 social-link">
<a rel="tooltip" title="Github" data-placement="bottom" href="{{data.github}}" target="_blank">
<i class="fa fa-github-square"></i>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="modal-footer no-border-footer">
<div class="project-close mx-auto">
<button type="button" class="btn btn btn-outline-primary btn-round" data-dismiss="modal" (click)="close()">Close</button>
</div>
</div>
</div>