-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
125 lines (118 loc) · 6.24 KB
/
index.php
File metadata and controls
125 lines (118 loc) · 6.24 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
<?php
// Hi
?>
<!DOCTYPE html>
<html lang="en">
<head>
<!--
__ __ ____ __ __ _
/ /___ _____/ /_ / __ )_________ ____ / /_______/ /_ (_)_______
__ / / __ \/ ___/ __ \ / __ / ___/ __ \/ __ \/ //_/ ___/ __ \/ / ___/ _ \
/ /_/ / /_/ (__ ) / / / / /_/ / / / /_/ / /_/ / ,< (__ ) / / / / / / __/
\____/\____/____/_/ /_/ /_____/_/ \____/\____/_/|_/____/_/ /_/_/_/ \___/
-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Codebuilt Portfolio</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" type="text/css" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:200,300,800,900" rel="stylesheet">
<link rel="alternate stylesheet" type="text/css" href="darktheme.css" title="darktheme">
<script src="https://kit.fontawesome.com/96aa305cf2.js" crossorigin="anonymous"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-81785500-3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-81785500-3');
</script>
<!-- CSS Styleswitcher and cookie set -->
<script src="styleswitcher.js"></script>
</head>
<body>
<div id="header-wrapper">
<div id ="toggle-wrapper">
<div id="theme-toggle">
<div id="sun-icon"><i class="fas fa-sun"></i></div>
<input class="onoffswitch-checkbox" id="onoffswitch" name="onoffswitch" type="checkbox" onclick="themeToggle()">
<label class="onoffswitch-label" for="onoffswitch"></label>
<div id="moon-icon"><i class="fas fa-moon"></i></div>
</div>
</div>
<script>
var checkbox = document.querySelector("input[name=onoffswitch]");
checkbox.addEventListener( 'change', themeToggle )
function themeToggle() {
if(this.checked) {
setActiveStyleSheet('darktheme');
} else {
setActiveStyleSheet('styles');
}
}
if (document.cookie.split(';').filter(function(item) {return item.indexOf('style=darktheme') >= 0}).length) {
document.getElementById("onoffswitch").checked = true;
}
</script>
<h1>Josh Brookshire</h1>
<h2>Full Stack Software Engineer</h2>
<h2 id="languages">HTML CSS JS PHP MYSQL</h2>
</div>
<div id="links">
<span class="project-type">Mailchimp Projects</span>
<br>
<a class="project-title" href="https://scriptchecker.platform.rsglab.com/" target="_blank">ScriptChecker</a>
<span> - </span>
<a class="project-repo" href="https://git.rsglab.com/support-org/scriptchecker" target="_blank">Repo</a>
<span class="contribution">Author, Maintainer</span>
<br>
<a class="project-title" href="https://dnscheck.platform.rsglab.com/" target="_blank">DNSchecker</a>
<span> - </span>
<a class="project-repo" href="https://git.rsglab.com/josh-brookshire/DNScheck" target="_blank">Repo</a>
<span class="contribution">Contributor, Maintainer</span>
<br>
<a class="project-title" href="https://sirt.platform.rsglab.com/" target="_blank">Incident Response Tool</a>
<span> - </span>
<a class="project-repo" href="https://git.rsglab.com/josh-brookshire/sev1-pando" target="_blank">Repo</a>
<span class="contribution">Contributor, Maintainer</span>
<br>
<a class="project-title" href="http://star-search.platform.rsglab.com/" target="_blank">STAR Search</a>
<span> - </span>
<a class="project-repo" href="https://git.rsglab.com/josh-brookshire/star-search" target="_blank">Repo</a>
<span class="contribution">Contributor</span>
<br>
<a class="project-title" href="http://echo-comm.platform.rsglab.com/" target="_blank">EchoComm</a>
<span> - </span>
<a class="project-repo" href="https://git.rsglab.com/josh-brookshire/echo-comm" target="_blank">Repo</a>
<span class="contribution">Contributor</span>
<br>
<a class="project-title" href="https://git.rsglab.com/rsg/supportbot/blob/master/README.md" target="_blank">SupportBot</a>
<span> - </span>
<a class="project-repo" href="https://git.rsglab.com/josh-brookshire/supportbot" target="_blank">Repo</a>
<span class="contribution">Contributor</span>
<br>
<span class="project-type">Personal Projects</span>
<br>
<a class="project-title" href="https://math-quiz-app.herokuapp.com/" target="_blank">Math Quiz App</a>
<span> - </span>
<a class="project-repo" href="https://github.com/strangelights/techdegree-project-2" target="_blank">Repo</a>
<br>
<a class="project-title" href="https://random-quote-generator-website.herokuapp.com/" target="_blank">Random Quote Generator</a>
<span> - </span>
<a class="project-repo" href="https://github.com/strangelights/techdegree-project-1" target="_blank">Repo</a>
<br>
<a class="project-title" href="https://strangelights.github.io/highlighter/highlighter.html" target="_blank">Highlighter Clipboard Utility</a>
<span> - </span>
<a class="project-repo" href="https://github.com/strangelights/highlighter" target="_blank">Repo</a>
<br>
<a class="project-title" href="https://www.codebuilt.dev/" target="_blank">Development Portfolio</a>
<span> - </span>
<a class="project-repo" href="https://github.com/strangelights/codebuilt" target="_blank">Repo</a>
<br>
<a class="project-title" href="https://raw.githubusercontent.com/strangelights/slack_dark_theme/master/slack_dark_theme.png" target="_blank">Slack Dark Theme</a>
<span> - </span>
<a class="project-repo" href="https://github.com/strangelights/slack_dark_theme" target="_blank">Repo</a>
</div>
<footer><i id="envelope"class="fas fa-envelope"></i><a href="mailto:josh@codebuilt.dev">josh@codebuilt.dev</a></footer>
</body>
</html>