-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (59 loc) · 3.56 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/index.css">
<link rel="canonical" href="https://www.corystephenson.com/" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
</head>
<body>
<div class="sidenav">
<a href="https://corystephenson.github.io/">Home</a>
<a href="pages/cory/aboutme.html">About Me</a>
<a href="pages/cory/contact.html">Contact</a>
<button class="dropdown-btn">Guides
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-container">
<a href="#">Questionnaires</a>
<a href="#"></a>
<a href="#"></a>
<a href="#"></a>
<a href="media/Cloud_Computing.pdf">Cloud</a>
</div>
<button class="dropdown-btn">Resources
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-container">
<a href="pages/resources/bookmarks.html">Online</a>
<a href="pages/resources/news_sources.html">News Sources</a>
<a href="pages/resources/documentation.html">Documentation</a>
<a href="pages/summaries/summaries.html">Summaries</a>
</div>
</div>
<div class="main">
<h1>Cory Stephenson - Information Systems Security & Assurance Professional</h1>
<h2>About This Site</h2>
<span>31 January 2022</span> — Revision 1
<p>
I built this personal website using GitHub Pages as the platform, and Jekyll, a static site generator (SSG) written in Ruby.
I chose GitHub Pages on account of the free web hosting, the option of an SSL certificate (now referred to as a TLS certificate), and
the fact that I needed to learn how to use Git. A personal website was a long awaited ambition of mine, so I figured this was the ideal
stepping stone to becoming proficient with Git as well as GitHub.
</p>
<span>11 November 2022</span> — Revision 2
<p>
I'm pretty satisfied with the progress I've made on my site this year. Colleagues can now call me, text me, or email me from the contact
page. However, on the contact page, you have to literally click on the word Home in order to return to the homepage. I couldn't figure out
how to make the entire button clickable. The content found in both the Platforms and Resources dropdown menus in the homepage's side navigation
bar will remain a work in progress. In other news, you can now view/download the latest generic version of my resume by clicking on the Experience
tab while on the About Me page. I also have a number of non-functional URL links on my online resources page for the time being. More later.
</p>
</div>
<script src="js/index.js"></script>
</body>
</html>