-
Notifications
You must be signed in to change notification settings - Fork 1
/
AllBlogs.html
118 lines (78 loc) · 3.2 KB
/
AllBlogs.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
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
<!DOCTYPE html>
<html lang="en" >
<!-- Google analytics not set up -->
<!-- Need help on back end development -->
<head>
<meta charset="UTF-8">
<title>CCGS Robotics Blogs</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link rel="stylesheet" href="css/custom_snow.css">
<link rel="stylesheet" href="css/loader.css">
<link rel="stylesheet" href="css/header.css">
<link rel="stylesheet" href="css/parralax.css">
<link rel="stylesheet" href="css/button.css">
<link rel="stylesheet" href="css/footer.css">
<link rel="stylesheet" href="css/facta.css">
<link rel="stylesheet" href="css/content.css">
<link rel="stylesheet" href="css/loadingbar.css">
<!--<link rel="shortcut icon" type="image/x-icon" href="https://www.ccgs.wa.edu.au/wp-content/themes/christchurchschool/assets/img/favicon.ico">-->
<link rel="shortcut icon" type="image/x-icon" href="icons/Normal.ico">
</head>
<link href="https://fonts.googleapis.com/css?family=Nunito+Sans" rel="stylesheet">
<header class="cf">
<nav>
<a href="index.html" class="logo">CCGS Robotics</a>
<div class="randomdiv" id="randomdiv">
<a class="logosub" href="https://www.thingiverse.com/groups/ccgs-robotics/things">Designs</a>
<a href="https://groups.google.com/forum/#!topic/oarkit/6ngI1czbHFA" class="logosub">OARKit</a>
<a href="https://github.com/CCGSRobotics" class="logosub" >Github</a>
<a href="AllBlogs.html" class="logosub" >Blogs</a>
<a href="howto.html" class="logosub" >How To</a>
</div>
</nav>
</header>
<div class="body">
<!-- Preloader -->
<div id="preloader">
<div id="status" style="text-align: center;">
Loading.
</div></div>
<div class="container">
<div class="parallax"></div>
<div class="progress-bar">
<span class="bar">
<span class="progress"></span>
</span>
</div>
</div>
<!-- grey rounded box appears when hovering on link-->
<div style="text-align: center;margin-top:10px;" class="content" id="content"><h3>All Blog Posts</h3></div>
</div>
<div id="mybutton">
<button class="feedback" onclick="SignInPage()">
<img height="40px" width="40px" src="css/baseline-face-24px.svg" id="proficon" style="border-radius: 50%;"></img>
</button>
</div>
</div>
<div style="margin-top:4000px;" class="footer">Robotics Club <a href="https://github.com/CCGSRobotics/ccgsrobotics.github.io">[Website source on github]</a></div>
<script src="https://www.gstatic.com/firebasejs/5.10.0/firebase.js"></script>
<script>
// Initialize Firebase
var config = {
apiKey: "AIzaSyB8r3dDr-4aCRuA4VgnKhBCSC3ctsQwZjM",
authDomain: "ccgsrobotics-d4422.firebaseapp.com",
databaseURL: "https://ccgsrobotics-d4422.firebaseio.com",
projectId: "ccgsrobotics-d4422",
storageBucket: "ccgsrobotics-d4422.appspot.com",
messagingSenderId: "858227198958"
};
firebase.initializeApp(config);
</script>
<script src="js/header.js"></script>
<script src="js/button.js"></script>
<script src="js/onscroll.js"></script>
<script src="js/mobileassist.js"></script>
<script src="js/loadernoscroll.js"></script>
<script src="js/loadblog.js"></script>
<script src="js/profileicon.js"></script>
<!-- FYI jquery at top of html -->