-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
55 lines (47 loc) · 2.48 KB
/
index.php
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php require 'header.php'; ?>
<?php
$sql = 'SELECT * FROM `projects`';
$result = mysqli_query($dbc, $sql);
if($result){
$projects = mysqli_fetch_all($result, MYSQLI_ASSOC);
} else{
die('Error fetching, no results.');
}
?>
<div class="main-content">
<div class="index-title">
<h1>Izsi Salmon</h1>
<h2>Web/UX <strong>designer</strong> and <strong>developer</strong> in Pōneke (Wellington) Aotearoa.</h2>
</div>
<?php if($projects): ?>
<div class="projects">
<?php foreach ($projects as $project): ?>
<div class="project-block">
<div class="project-img-container">
<a href="project-single.php?project=<?= $project['id'] ?>"><img src="images/<?=$project['image_directory']?>/<?=$project['featured_image']?>" alt="project displayed on mock up"></a>
</div>
<div class="project-text">
<div><a href="project-single.php?project=<?= $project['id'] ?>" class="project-title" id="projectTitle"><h3><?= $project['title']; ?></h3></a></div>
<div class="project-text-details project-text-details-hidden">
<div class="date-container"><div class="date-hr"></div><span class="date"><?=$project['year']?></span></div>
<span class="project-type"><?=$project['project_type']?></span>
<p><?=$project['summary']?></p>
<div><a href="project-single.php?project=<?= $project['id'] ?>" class="icon-link view-project-container"><i class="fas fa-ellipsis-h icon-link-icon project-icon"></i><span>view project</span></a></div>
<?php if($project['website_link']): ?>
<div><a href="<?= $project['website_link'] ?>" target="_blank" class="icon-link view-site-container"><i class="fas fa-globe icon-link-icon globe"></i><span>visit site</span></a></div>
<?php endif; ?>
</div>
</div>
</div>
<?php endforeach; ?>
</div>
<?php else: ?>
<div class="error-message">
<p>Sorry, no projects could be found.</p>
</div>
<?php endif; ?>
</div>
<div class="scroll-message" id="scrollMessage">
<p>more projects this way</p><i class="fas fa-long-arrow-alt-down"></i>
</div>
<?php require 'footer.php'; ?>