-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
154 lines (144 loc) · 6.32 KB
/
portfolio.html
File metadata and controls
154 lines (144 loc) · 6.32 KB
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
146
147
148
149
150
151
152
153
154
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-136768252-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-136768252-1');
</script>
<title>NPhillips Portfolio - Portfolio</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/unholy-core.css">
<link rel="stylesheet" href="css/unholy-utility.css">
<link rel="stylesheet" href="css/unholy-navigation.css">
<link rel="stylesheet" href="css/custom.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="js/custom.js"></script>
</head>
<body>
<nav id="hamnav">
<label for="hamburger">☰</label>
<input type="checkbox" id="hamburger"/>
<div id="hamitems">
<a href="index.html">Home</a>
<a href="bio.html">Biography</a>
<a class="active" href="portfolio.html">Portfolio</a>
<a href="writing.html">Writing</a>
<a href="version.html">Version</a>
</div>
</nav>
<div class="container">
<div class="row">
<h1>Portfolio</h1>
</div>
<div class="row">
<div class="box-large">
<div class="card shadow">
<div class="card-header">
Unholy
</div>
<div class="card-content">
My CSS boilerplate "framework" which is styling and providing the responsive design of this site.
Currently under active development, version 2.1.0 was released 27/10/2020.
</div>
<div class="card-action">
<a href="https://github.com/nphillips-dev/Unholy" target="_blank" rel="noopener noreferrer">Check it out</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="box-large">
<div class="card shadow">
<div class="card-header">
Github
</div>
<div class="card-content">
All my ideas, snippets, projects and contributions.
<strong>N.B.</strong> Only personal work is shown, professional contributions are under seperate accounts.
</div>
<div class="card-action">
<a href="https://github.com/nphillips-dev/" target="_blank" rel="noopener noreferrer">View here</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="box-large">
<div class="card shadow">
<div class="card-header">
Chuck Jokes
</div>
<div class="card-content">
<p>A just for fun site!</p>
<p>A single page using just Unholy CSS and some JS to call the <a href="http://www.icndb.com/api/" target="_blank" rel="noopener noreferrer">Chuck Norris API</a>.</p>
</div>
<div class="card-action">
<a href="https://chuckjoke.neocities.org/" target="_blank" rel="noopener noreferrer">Check it out</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="box-large">
<div class="card shadow">
<div class="card-header">
Digital Blog
</div>
<div class="card-content">
A wordpress site where I can store development blog posts, should I have the time and inclination.
</div>
<div class="card-action">
<a href="https://nphillipsdev.wordpress.com" target="_blank" rel="noopener noreferrer">Read here</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="box-large">
<div class="card shadow">
<div class="card-header">
Wedding Website
</div>
<div class="card-content">
This was a PHP site I created to provide my guests with information.
Hosting is ending in December 2020 and will not be renewed.
</div>
<div class="card-action">
<a href="http://www.spanczakphillips.com" target="_blank" rel="noopener noreferrer">View here</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="box-large">
<div class="card shadow">
<div class="card-header">
Whats in the dev site today?
</div>
<div class="card-content">
A random sub domain of my wedding website, currently hosting some animated SVG learning I attempted.
Hosting is ending in December 2020 and will not be renewed.
</div>
<div class="card-action">
<a href="http://dev.spanczakphillips.com" target="_blank" rel="noopener noreferrer">Check it out</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="box-large">
<div class="center-portfolio-secondary">
<a href="https://twitter.com/nphillips_dev" target="_blank" rel="noopener noreferrer" class="fa fa-twitter"></a>
<a href="https://www.linkedin.com/in/neil-phillips/" target="_blank" rel="noopener noreferrer" class="fa fa-linkedin"></a>
<a href="https://www.reddit.com/user/nphillips_dev" target="_blank" rel="noopener noreferrer" class="fa fa-reddit"></a>
</div>
</div>
</div>
</div>
</body>
</html>