forked from zhao-ding/lab-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebar.js
More file actions
50 lines (44 loc) · 1.61 KB
/
sidebar.js
File metadata and controls
50 lines (44 loc) · 1.61 KB
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
<script>
info="<!-- Sidebar -->
<div id="sidebar">
<div class="inner">
<!-- Search -->
<section id="search" class="alt">
<form method="post" action="#">
<input type="text" name="query" id="query" placeholder="Search" />
</form>
</section>
<!-- Menu -->
<nav id="menu">
<header class="major">
<h2>Menu</h2>
</header>
<ul>
<li><a href="index.html">Homepage</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="publications.html">Publication</a></li>
<li><a href="talk.html">Talk</a></li>
<li><a href="student.html">Student</a></li>
<li><a href="calendar.html">Calendar</a></li>
</ul>
</nav>
<!-- Section -->
<section>
<header class="major">
<h2>Get in touch</h2>
</header>
<p>The best way to reach me, generally, is via email. During the day, I am usually in my office.</p>
<ul class="contact">
<li class="fa-envelope-o">dingzhao@cmu.edu</li>
<li class="fa-phone">412-268-3348</li>
<li class="fa-map-marker">5000 Forbes Avenue<br /> Scaife Hall 315<br /> Pittsburgh, PA 15213</li>
</ul>
</section>
<!-- Footer -->
<footer id="footer">
<p class="copyright">© Ding Zhao. All rights reserved. Design: <a href="http://html5up.net">HTML5 UP</a>.</p>
</footer>
</div>
</div>"
document.write(info)
</script>