-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathholdon.php
More file actions
27 lines (21 loc) · 1.08 KB
/
holdon.php
File metadata and controls
27 lines (21 loc) · 1.08 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
<?php foreach($projects as $project) : ?>
<div class="project">
<img src=<?=$project['image'] ?> class='project-image'>
<div class="hidden">
<div class="description"></div>
<div class="link">
<a href=<?= $project['url']?>>
<button>
View
</button>
</a>
<a href=<?=$project['github'] ?>>
<button>
Check the source!
</button>
</a>
</div>
</div>
</img>
</div>
<?php endforeach ?>