-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.html
144 lines (126 loc) · 5.49 KB
/
template.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>CloudUtsuk</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://www.w3schools.com/lib/w3-theme-blue.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
html,body,h1,h2,h3,h4,h5,h6 {font-family: "Roboto", sans-serif;}
.w3-sidebar {
z-index: 3;
width: 200px;
top: 52px;
bottom: 0;
height: inherit;
}
</style>
</head>
<body>
<!-- Navbar -->
<div class="w3-top">
<div class="w3-bar w3-theme w3-large">
<a class="w3-bar-item w3-button w3-left w3-hide-large w3-hover-white w3-large w3-theme-l1" href="javascript:void(0)" onclick="w3_open()"><i class="fa fa-bars"></i></a>
<a class="w3-bar-item w3-button w3-right w3-hide-large w3-hover-white w3-large w3-theme-l1" href="javascript:void(0)" onclick="w3_rightopen()"><i class="fa fa-bars"></i></a>
<a href="index.html" class="w3-bar-item w3-button w3-hover-grey w3-xlarge">CloudUtsuk</a>
<a href="common/contactme.html" class="w3-bar-item w3-button w3-right w3-hide-small w3-hover-white">Contact Me</a>
<a href="common/blogs.html" class="w3-bar-item w3-button w3-right w3-hide-small w3-hover-white">Blogs</a>
</div>
</div>
<!-- Sidebar -->
<nav class="w3-sidebar w3-bar-block w3-collapse w3-large w3-theme-l5 w3-animate-left" id="mySidebar">
<a href="javascript:void(0)" onclick="w3_close()" class="w3-xlarge w3-padding-large w3-hover-blue w3-hide-large" title="Close Menu">
<i class="fa fa-remove"></i>
</a>
<h4 class="w3-bar-item"><b></b></h4>
<a href="azure/azure.html" class="w3-bar-item w3-button w3-hover-blue w3-right" href="#">Azure</a>
<a href="aws/aws.html" class="w3-bar-item w3-button w3-hover-blue w3-right" href="#">AWS</a>
<a href="gcp/gcp.html" class="w3-bar-item w3-button w3-hover-blue w3-right" href="#">GCP</a>
<a href="terraform/terraform.html" class="w3-bar-item w3-button w3-hover-blue w3-right" href="#">Terraform</a>
<a href="kubernetes/kubernetes.html" class="w3-bar-item w3-button w3-hover-blue w3-right" href="#">Kubernetes</a>
<a href="devops/devops.html" class="w3-bar-item w3-button w3-hover-blue w3-right" href="#">DevOps</a>
<a href="monitoring/monitoring.html" class="w3-bar-item w3-button w3-hover-blue w3-right" href="#">Monitoring</a>
</nav>
<!-- Right Sidebar -->
<nav class="w3-sidebar w3-bar-block w3-collapse w3-large w3-theme-l5 w3-animate-right" style="right:0" id="myRightSidebar">
<a href="javascript:void(0)" onclick="w3_rightclose()" class="w3-xlarge w3-padding-large w3-hover-blue w3-hide-large" title="Close Menu">
<i class="fa fa-remove"></i>
</a>
<h4 class="w3-bar-item"><b></b></h4>
<a href="#" class="w3-bar-item w3-button w3-theme-l1">Photo</a>
<a href="#" class="w3-bar-item w3-button w3-hover-white">Title</a>
<a href="#" class="w3-bar-item w3-button w3-hover-white">Primary Skills</a>
<a href="#" class="w3-bar-item w3-button w3-hover-white">Secondary Skills</a>
<a href="#" class="w3-bar-item w3-button w3-hover-white">Resume</a>
</nav>
<!-- Overlay effect when opening sidebar on small screens -->
<div class="w3-overlay w3-hide-large w3-right-align" onclick="w3_close()" style="cursor:pointer" title="close side menu" id="myOverlay"></div>
<div class="w3-left w3-overlay w3-hide-large" onclick="w3_rightclose()" style="cursor:pointer" title="close side menu" id="myRightOverlay"></div>
<!-- Main content: shift it to the right by 250 pixels when the sidebar is visible -->
<div class="w3-main" style="margin-left:250px;margin-right:250px">
<!-- Blog 1 -->
<div class="w3-row w3-padding-64">
<div class="w3-twothird w3-container">
<h1 class="w3-text-teal">Blog 1</h1>
<p>
This blog is about blog1.
</p>
</div>
</div>
<footer id="myFooter">
<div class="w3-container w3-theme-l2 w3-padding-32">
<h4>CloudUtsuk</h4>
</div>
<div class="w3-container w3-theme-l1">
<p> <a href="#">Contact Us</a></p>
</div>
</footer>
<!-- END MAIN -->
</div>
<script>
// Left Sidebar
// Get the Sidebar
var mySidebar = document.getElementById("mySidebar");
// Get the DIV with overlay effect
var overlayBg = document.getElementById("myOverlay");
// Toggle between showing and hiding the sidebar, and add overlay effect
function w3_open() {
if (mySidebar.style.display === 'block') {
mySidebar.style.display = 'none';
overlayBg.style.display = "none";
} else {
mySidebar.style.display = 'block';
overlayBg.style.display = "block";
}
}
// Close the left sidebar with the close button
function w3_close() {
mySidebar.style.display = "none";
overlayBg.style.display = "none";
}
// Right Sidebar
// Get the Sidebar
var myRightSidebar = document.getElementById("myRightSidebar");
// Get the DIV with overlay effect
var overlayRightBg = document.getElementById("myRightOverlay");
// Toggle between showing and hiding the sidebar, and add overlay effect
function w3_rightopen() {
if (myRightSidebar.style.display === 'block') {
myRightSidebar.style.display = 'none';
overlayRightBg.style.display = "none";
} else {
myRightSidebar.style.display = 'block';
overlayRightBg.style.display = "block";
}
}
// Close the sidebar with the close button
function w3_rightclose() {
myRightSidebar.style.display = "none";
overlayRightBg.style.display = "none";
}
</script>
</body>
</html>