-
Notifications
You must be signed in to change notification settings - Fork 0
/
resources.html
86 lines (67 loc) · 2.6 KB
/
resources.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Scott McKay's Website</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/simple-sidebar.css" rel="stylesheet">
</head>
<body>
<div id="wrapper">
<!-- Sidebar -->
<div id="sidebar-wrapper">
<ul class="sidebar-nav">
<li>
<a href="home.html">Home</a>
</li>
<li>
<a href="resources.html">Resources</a>
</li>
<li>
<a href="tutorials.html">Tutorials</a>
</li>
<li>
<a href="aboutme.html">About Me / Contact Me</a>
</li>
<li>
<a href="https://www.paypal.me/Evilscaught">Donate</a>
</li>
</ul>
</div>
<!-- /#sidebar-wrapper -->
<!-- Button to toggle menu -->
<button href="#menu-button" class="btn btn-secondary" id="menu-button"></button>
<!-- Page Content -->
<div id="page-content-wrapper">
<div class="container" id="intro-container">
<p>I'm not entirely sure what sort of content this page should have. If you've got any ideas, please let me know. :D<br>
I'm thinking about creating a private web-based hosting service for version control using Git. (Similar to GitHub)
That way I'll be able to make any repositories available directly from my website without having to rely on third
party software. </p>
</div>
</div>
<!-- /#page-content-wrapper -->
</div>
<!-- /#wrapper -->
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Menu Toggle Script -->
<script>
//<iframe src="Scott McKay.pdf" width="100%" height="1024px"> Your browser does not appear to support inline frames. Please download the Resume using the link provided above. </iframe>
jQuery.get("introduction.txt", function(data) {
alert(data);
})
$("#menu-button").click(function(e)
{
e.preventDefault();
$("#wrapper").toggleClass("toggled");
});
</script>
</body>
</html>