-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.php
103 lines (78 loc) · 4.98 KB
/
portfolio.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?php
$pageTitle = "Portfolio";
$pageDesc = "Mark Landeryou Artisan is an web designer/developer, graphic designer and digital artist, based out of Sarnia Ontario serving Sarnia and London areas";
$pageKeywords = "Mark Landeryou Artisan Sarnia London Canada Graphic Designer Web Designer Web developer Digital Artist";
include "includes/header.php";
?>
<div class="grid-x grid-margin-x content-wrap">
<div class="large-12 cell">
<h2>Portfolio</h2>
<section class="filter-simple">
<h2 class="hidden">Gallery</h2>
<div class="button-group round">
<button class="button hollow filter-simple-button is-active" data-filter="all">All</button>
<button class="button hollow filter-simple-button" data-filter="web">Web</button>
<button class="button hollow filter-simple-button" data-filter="design">Design</button>
<button class="button hollow filter-simple-button" data-filter="illustration">Illustration</button>
<button class="button hollow filter-simple-button" data-filter="photoshop">Photoshop</button>
</div>
<div class="grid-x grid-padding-x small-up-2 medium-up-3 large-up-4">
<div class="cell column column-block filter-simple-item web">
<a href="fgcs.php"><img src="img/thumbs/fgcs-thumb.png" alt="Fanshawe Golf Coaches School" /></a>
</div>
<div class="cell column column-block filter-simple-item web">
<a href="landtech.php"><img src="img/thumbs/LCC_thumb.png" alt="Landtech Computer Consulting" /></a>
</div>
<div class="cell column column-block filter-simple-item web">
<a href="lcc.php"><img src="img/thumbs/LCC1_thumb.png" alt="Landtech Computer Consutling WordPress" /></a>
</div>
<div class="cell column column-block filter-simple-item web">
<a href="ewn.php"><img src="img/thumbs/Energyworksnaturally_thumb.png" alt="Energy Works Naturally WordPress" /></a>
</div>
<div class="cell column column-block filter-simple-item web">
<a href="gdr.php"><img src="img/thumbs/GDR_thumb.png" alt="Golf Destination Review" /></a>
</div>
<div class="cell column column-block filter-simple-item web">
<a href="thg.php"><img src="img/thumbs/THG_thumb.png" alt="The Hair Garage WordPress" /></a>
</div>
<div class="cell column column-block filter-simple-item illustration">
<a href="clayandgemma.php"><img src="img/thumbs/Clay_and_Gemma_thumb.png" alt="Clay and Gemma Digital Painting" /></a>
</div>
<div class="cell column column-block filter-simple-item illustration">
<a href="jimmorrison.php"><img src="img/thumbs/Jim_Morrison_1968-painting_thumb.png" alt="Young Jim Morrison Digial Painting" /></a>
</div>
<div class="cell column column-block filter-simple-item illustration">
<a href="yoda.php"><img src="img/thumbs/yoda_thumb.jpg" alt="Master Yoda Digital Painting" /></a>
</div>
<div class="cell column column-block filter-simple-item photoshop">
<a href="ketchup.php"><img src="img/thumbs/ketchupbottle_thumb.jpg" alt="Ketchup Bottle in Photoshop" /></a>
</div>
<div class="cell column column-block filter-simple-item photoshop">
<a href="jukebox.php"><img src="img/thumbs/jukebox_thumb.jpg" alt="Jukebox in Photoshop" /></a>
</div>
<div class="cell column column-block filter-simple-item web">
<a href="ldao.php"> <img src="img/thumbs/LDALC_thumb.png" alt="Learning Disabilities Assoc of Lambton County" /></a>
</div>
<div class="cell column column-block filter-simple-item design">
<a href="mla.php"><img src="img/thumbs/MLA-Logo-Outlined-thumb.png" alt="Mark Landeryou Artisan Logo" /></a>
</div>
<div class="cell column column-block filter-simple-item design">
<a href="mla1.php"><img src="img/thumbs/Logo_outlined_thumb.png" alt="Mark Landeryou Artisan First Logo" /></a>
</div>
<!-- <div class="cell column column-block filter-simple-item design">
<img src="https://placeimg.com/350/350/design" alt="" />
</div>
<div class="cell column column-block filter-simple-item design">
<img src="https://placeimg.com/350/350/design" alt="" />
</div>
<div class="cell column column-block filter-simple-item design">
<img src="https://placeimg.com/350/350/design" alt="" />
</div> -->
</div>
</section>
</div>
</div>
<?php
include "includes/socialmedia.php";
include "includes/footer.php";
?>