This repository has been archived by the owner on Jun 28, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
53 lines (46 loc) · 2.21 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Greg Sargent - UX/UI Designer</title>
<meta name="description" content="Greg is a UX/UI Designer in the north Dallas area. Specializing in minimal modern design, Greg is currently working in the FinTech industry designing personal financial management tools at Alkami.">
<?php // This php pulls in head.php to create the meta and links
include $_SERVER['DOCUMENT_ROOT'].'/modules/head.php'; ?>
</head>
<body>
<?php // This php pulls in header.php to create the header content
include $_SERVER['DOCUMENT_ROOT'].'/modules/header.php'; ?>
<div class="banner">
<p class="banner-meta-text"></p>
<h1>UI & Ix Designer</h1>
<p class="banner-subheading">I'm an Apple fanboy, Sketch lovin', anti-Adobe-designer kinda dude working by day at Alkami, and studying design through BYUI at night.</p>
</div><!-- end banner -->
<main>
<div class="container">
<h2>More stuff coming soon...</h2>
<p>I'll eventually have my portfolio here, and I'll be working on it slowly over time. My main focus is on finishing up my degree and designing banking software at Alkami.</p>
</div><!-- end container -->
<!-- ============== RECENT ARTICLES MODULE HERE =================== -->
<?php // This php pulls in head.php to create the meta and links
include $_SERVER['DOCUMENT_ROOT'].'/modules/recent-articles.php'; ?>
</main>
<!-- call to action container - consider moving this into a module -->
<div class="cta-container">
<div class="columns">
<div class="cta-left one-half column">
<p>Work with a purpose</p>
<form method="get" action="/projects">
<button class="primary-button" type="submit">My Work</button>
</form>
</div> <!-- end half column -->
<div class="cta-right one-half column">
<p>Study with a purpose</p>
<form method="get" action="/articles">
<button class="primary-button" type="submit">My Studies</button>
</form>
</div> <!-- end half column -->
</div><!-- end columns -->
</div><!-- end cta-container -->
<?php // This php pulls in footer.php to create the footer content
include $_SERVER['DOCUMENT_ROOT'].'/modules/footer.php'; ?>
</body>
</html>