-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathsidebar.html
More file actions
49 lines (42 loc) · 2.12 KB
/
sidebar.html
File metadata and controls
49 lines (42 loc) · 2.12 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
<a href='/contributing.html' class='ribbon'>Contribute to ML4Code</a>
<div class="sidebar">
<div class="container sidebar-sticky">
<div class="sidebar-about">
<h1>
<a href="/">
{{ site.title }}
</a>
</h1>
<p class="lead">{{ site.description }}</p>
</div>
<nav class="sidebar-nav">
<div class="sidebar-item"><p style="font-size: 12px">Search related work <input type='text' id='searchTarget' size="16"/> <button onClick="search();">Go</button></p></div>
<a class="sidebar-nav-item{% if page.url == "/papers.html" %} active{% endif %}" href="{% link papers.html %}">List of Papers</a>
<a class="sidebar-nav-item{% if page.url == "/tags.html" %} active{% endif %}" href="{% link tags.html %}">Papers by Tag</a>
<a class="sidebar-nav-item{% if page.url == "/tsne-viz.html" %} active{% endif %}" href="{% link tsne-viz.html %}">2D Map of Papers</a>
<a class="sidebar-nav-item{% if page.url == "/topic-viz.html" %} active{% endif %}" href="{% link topic-viz.html %}">Topic-based Explorer</a>
<a class="sidebar-nav-item{% if page.url == "/base-taxonomy/" %} active{% endif %}" href="{% link base-taxonomy/index.md %}">Core Taxonomy</a>
<a class="sidebar-nav-item{% if page.url == "/resources.html" %} active{% endif %}" href="{% link resources.md %}">Resources, Courses & Events</a>
<a class="sidebar-nav-item{% if page.url == "/contributing.html" %} active{% endif %}" href="{% link contributing.markdown %}">Contributing</a>
</nav>
<div class="sidebar-item">
<p style="font-size: 12px">Contact <a href="https://miltos.allamanis.com">Miltos Allamanis</a> about this survey or website.
<span style="font-size: 9px">
Made with <a href="https://jekyllrb.com">Jekyll</a> and <a href="https://github.com/poole/hyde">Hyde</a>.
</span></p>
</div>
</div></div>
<script>
$("#searchTarget").keydown(function (e) {
if (e.keyCode == 13) {
search();
}
});
function search() {
try {
ga('send', 'event', 'search', 'search', $("#searchTarget").val());
} finally {
window.location = "{% link papers.html %}#" + $("#searchTarget").val();
}
}
</script>