-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
156 lines (110 loc) · 3 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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html>
<head>
<?
// PHP global includes.
include("php/global.inc.php");
// Call include files.
printCSS();
printMetaTags();
// Defines which nav the current page falls under.
$currentNav = "home";
?>
<!--[if lt IE 9]>
<script type="text/javascript" src="js/html5shiv.js"></script>
<script type="text/javascript" src="js/respond.min.js"></script>
<![endif]-->
<title>
Glenn McComb - Web designer and front-end developer
</title>
</head>
<body class="body-bg-dark body-home">
<?
// Site Header, called by PHP. Pass this function the name of the current page.
printSiteHeader($currentNav);
?>
<div class="wrap">
<?
// Home page includes.
printHomeIntro($imagePath);
// Work links.
printWorkFitbugg($imagePath);
printWorkNissco($imagePath);
printWorkNowApp($imagePath);
?>
<?
// Dribbble.
$dribbbleBG = "bg-dark";
printDribbble($dribbbleBG);
// Instagram.
printInstagram();
?>
<!--
<section class="bg-light">
<div class="container">
<h1 id="testOutput">
Heading One
</h1>
<p class="lead">
Paragraph lead
</p>
<p>
Sketching is a crucial part of my work flow. I use the Behance Dot Grid Book. Sketching helps me quickly iterate UI / UX concept without the distractions of PS.
</p>
<hr />
<p>
In the Scores sketch, I tried stacking teams and scores above one another rather than centre-aligning them on the same row. This proved to increase ease of reading.
</p>
</div>
</section>
<section class="bg-dark">
<div class="container">
<h1 id="testOutput">
Heading One
</h1>
<p class="lead">
Paragraph lead
</p>
<p>
Sketching is a crucial part of my work flow. I use the Behance Dot Grid Book. Sketching helps me quickly iterate UI / UX concept without the distractions of PS.
</p>
<p>
In the Scores sketch, I tried stacking teams and scores above one another rather than centre-aligning them on the same row. This proved to increase ease of reading.
</p>
<p>
I added round number indicators which were later removed only to be added back in. I removed venue for each match but later re-integrated it because it was deemed vital information.
</p>
<hr />
<h2>
Heading Two
</h2>
<p class="lead">
Paragraph lead
</p>
</div>
</section>
<section class="bg-light">
<div class="container">
<h1 id="testOutput">
Test Output
</h1>
<p class="lead">
Recent work
</p>
<p>
Sketching is a crucial part of my work flow. I use the Behance Dot Grid Book. Sketching helps me quickly iterate UI / UX concept without the distractions of PS.
</p>
</div>
</section>
-->
<?
// Outputs the footer from PHP.
printFooter();
?>
</div> <!-- .wrap -->
<?
// Outputs all javascript.
printJavascript();
?>
</body>
</html>