-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathold_index.html
192 lines (182 loc) · 5.76 KB
/
old_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
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vishal Rao - Personal Page</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
margin: 50px;
background-image: url('background.jpg');
background-size: cover;
background-position: center;
color: #333;
}
.container {
max-width: 1000px;
margin: auto;
background: #fff;
padding: 20px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
text-align: left;
}
.photo {
width: 150px;
height: 200px;
border: 1px solid #000;
margin-bottom: 20px;
margin-left: 20px;
}
.header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 40px;
}
.header img {
max-width: 150px;
height: auto;
border-radius: 5px;
}
h1, h2 {
color: #0056b3;
}
h1 {
margin-bottom: 10px;
font-size: 1.1em;
}
h2 {
margin-top: 40px;
margin-bottom: 20px;
text-decoration: underline;
font-size: 1.1em;
}
.intro {
margin-bottom: 30px;
margin-right: 20px;
}
.content-offset {
padding-left: 20px;
}
.social-links {
margin-top: 10px;
}
.social-links a {
text-decoration: none;
color: #0077b5;
font-weight: bold;
display: flex;
align-items: center;
}
.social-links img {
vertical-align: middle;
margin-right: 8px;
width: 24px;
height: 24px;
}
.cv-viewer {
margin-top: 30px;
}
footer {
margin-top: 50px;
font-size: 0.6em;
color: #666;
text-align: center;
}
.redirect-note {
margin-top: 20px;
font-style: italic;
color: gray;
}
/* Responsive Design */
@media (max-width: 768px) {
body {
margin: 20px;
}
.header {
flex-direction: column;
align-items: center;
}
.content-offset {
padding-left: 40px;
}
.cv-viewer embed {
height: 300px;
}
.intro {
text-align: center;
}
}
</style>
<script src="https://accounts.google.com/gsi/client" async defer></script>
</head>
<body>
<div class="container">
<div class="header">
<div>
<h1>Vishal Rao</h1>
<div class="intro">
<p>I do research at the center for high energy physics at IISc, with a focus on lattice gauge theories.
My passion lies in fundamental physics, philosophy, and some sports.</p>
</div>
</div>
<div>
<img src="pp.jpg" alt="Vishal Rao's Photo" class="photo">
</div>
</div>
<div class="contact">
<h2>Contact</h2>
<div class="content-offset">
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
<div class="social-links">
<a href="https://www.linkedin.com/in/vishal-rao-9ba182171/" target="_blank">
<img src="linkedin_icon.png" alt="LinkedIn Icon">
LinkedIn
</a>
</div>
</div>
</div>
<h2>Blogs</h2>
<div class="content-offset">
<p>Explore my thoughts and writings on various topics in my <a href="wiki/vimwiki_html/Blogs/index.html">Blogs</a> section.</p>
</div>
<h2>Wiki</h2>
<div class="content-offset">
<p>For Public use: SIMULATeQCD wikipedia <a href="wiki/vimwiki_html/SIMULATeQCD/index.html">SIMULATeQCD wikipedia</a> </p>
<p>For Personal use: <a href="wiki/vimwiki_html/All_wiki/index.html">Master Wiki</a> </p>
</div>
<h2>Curriculum Vitae (CV)</h2>
<p> Please login to view Resume.</p>
<div class="content-offset">
<div id="g_id_onload"
data-client_id="660706504701-r7nrfcifa7qesf1r5332jb9rp7hs5ssf.apps.googleusercontent.com"
data-context="signin"
data-ux_mode="popup"
data-callback="onSignIn"
data-auto_prompt="false">
</div>
<div class="g_id_signin" data-type="standard"></div>
<div id="cv-viewer" class="cv-viewer" style="display:none;">
<embed src="cv.pdf" type="application/pdf" />
</div>
</div>
<div class="redirect-note content-offset">
<p>You will be redirected to my blogs in 120 seconds.</p>
<p>If not, click <a href="wiki/vimwiki_html/Blogs/index.html">here</a>.</p>
</div>
</div>
<footer>
© 2024 Vishal Rao. All rights reserved.<br>
</footer>
<script>
function onSignIn(response) {
if (response && response.credential) {
document.getElementById('cv-viewer').style.display = 'block';
document.querySelector('.g_id_signin').style.display = 'none';
}
}
</script>
</body>
</html>