-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.php
49 lines (48 loc) · 2.15 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
<?php $pageTitle = 'Portfolio'; ?>
<?php $pageId = 'portfolio'; ?>
<?php include('meta.php') ?>
<body class="<?php echo $pageId; ?>">
<?php include('header.php') ?>
<section id="portfolioSec1" class="bg3 h-auto" data-float="hide" data-nav="transparent">
<div class="container-fluid pos-rel">
<div class="secrow1 animate explode">
<div class="bannerContent cell">
<div class="hs4 fc1 fw8 text-center w-g-md-7 w-g-12 m-auto">
When Brands think that there's no more water, we show them an ocean. <span class="fc7 d-block">Here are some of the many Brands that took a dive!</span>
</div>
</div>
</div>
</div>
<div class="absolute-bg sec-bg">
<img src="assets/images/Portfolio-bg1.svg">
</div>
</section>
<section id="portfolioSec2" class="h-auto">
<div class="container-fluid">
<div class="secrow1 row controls">
<ul id="portfolioFilters" class="col w-g-12 text-center"></ul>
</div>
<div class="secrow2 row fc3 targets text-center">
<div class="grid m-auto" id="portfolioCards">
<div class="gap"></div>
</div>
</div>
<div class="secrow3 row text-center">
<button class="btn btn-red-black d-inline" id="loadMoreCards">Load More</button>
</div>
</div>
</section>
<section id="portfolioSec3" class="zero-padding h-auto" data-theme="dark">
<div class="container-fluid pos-rel bg8 hideflow">
<div class="secrow1 row text-center animate up pos-rel">
<h4 class="hs4 fc1 fw8 secHeader">Liked what you saw? <br> Hit us up</h4>
<a href="https://vikas921897.typeform.com/to/ibpgeKDW" target="_blank" class="btn btn-red-white d-inline">Plan a project</a>
</div>
<div class="absolute-bg sec-bg">
<img src="assets/images/Portfolio-bg2.svg">
</div>
</div>
</section>
<?php include('footer.php') ?>
</body>
<?php include('scripts.php') ?>