-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
237 lines (180 loc) · 9.86 KB
/
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<!-- External Javascript libs_ext -->
<script src="https://cdn.jsdelivr.net/npm/d3@5/dist/d3.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/handlebars@4.7.3/dist/handlebars.min.js"
integrity="sha256-/PJBs6QWvXijOFIX04kZpLb6ZtSQckdOIavLWKKOgXU=" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.4.1/dist/js/bootstrap.min.js"
integrity="sha256-WqU1JavFxSAMcLP2WIOI+GB2zWmShMI82mTpLDcqFUg=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/moment@2.24.0/min/moment.min.js"
integrity="sha256-4iQZ6BVL4qNKlQ27TExEhBN1HFPvAvAMbFavKKosSWQ=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/moment-timezone@0.5.28/builds/moment-timezone-with-data.min.js"
integrity="sha256-IWYg4uIC8/erItNXYvLtyYHioRi2zT1TFva8qaAU/ww=" crossorigin="anonymous"></script>
<!-- Library libs_ext -->
<script src="static/js/libs_ext/typeahead.bundle.js"></script>
<script src="static/js/tagEditor/jquery.caret.min.js"></script>
<script src="static/js/tagEditor/jquery.tag-editor.min.js"></script>
<!-- Internal Libs -->
<script src="static/js/data/api.js"></script>
<!-- External CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css"
integrity="sha256-YLGeXaapI0/5IgZopewRJcFXomhRMlYYjugPLSyNjTY=" crossorigin="anonymous">
<!-- External Fonts (no google for china) -->
<link href="static/css/Lato.css" rel="stylesheet" />
<link href="static/css/Exo.css" rel="stylesheet" />
<link href="static/css/Cuprum.css" rel="stylesheet" />
<link rel="stylesheet" href="static/css/main.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="static/css/fa_solid.css" />
<link rel="stylesheet" href="static/css/lazy_load.css" />
<link rel="stylesheet" href="static/css/typeahead.css" />
<script type="text/javascript"
src="https://cdn.jsdelivr.net/npm/daterangepicker/daterangepicker.min.js"></script>
<link rel="stylesheet" type="text/css"
href="https://cdn.jsdelivr.net/npm/daterangepicker/daterangepicker.css" />
<title>Machine Learning Simulation: Home</title>
<link rel="icon" type="image/png" href="favicon.ico">
<!-- Google Analytics -->
<!-- <script async src="https://www.googletagmanager.com/gtag/js?id=G-GT7LEVW06Z"></script> -->
<!-- <script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-GT7LEVW06Z');
</script>
-->
<!-- head block ends here-->
</head>
<body>
<!-- NAV -->
<!-- move the following to the "navigation_bar" list below to have buttons; can't comment in jinja as of now -->
<!--
('index.html', 'Home'),
('papers.html', 'Advanced Search'),
('faq.html', 'FAQ')
-->
<nav class="navbar sticky-top navbar-expand-lg navbar-light" style="background-color: #F5F5F5;" id="main-nav">
<div class="container">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse text-right flex-grow-1" id="navbarNav">
<ul class="navbar-nav ml-auto">
</ul>
</div>
</div>
</nav>
<!-- User Overrides -->
<style>
.back {
background: url("static/images/bg.jpg") no-repeat center;
background-size: cover;
}
.back h2 {
font-family: "Lato", sans-serif;
font-weight: 900;
}
</style>
<image src="static/images/mls_logo_withfont.svg" style="padding-top: 8vh; width: 30%; min-width: 240px; display: block;
margin-left: auto;
margin-right: auto;" alt="A live repository of papers on Machine Learning and Graph Neural Networks for Simulation"></image>
<div class="container">
<!-- Tabs -->
<div class="tabs">
</div>
<!-- Content -->
<div class="content">
<div class="row" style="padding-top: 20px;">
<div class="col-2"></div>
<div class="input-group col-8">
<input type="text" id="vagueSearchInput" class="form-control vagueSearchTypeahead change" placeholder="Search for papers on Machine Learning and Neural Networks for Simulation"
onchange="vagueSearch()" style="font-family: 'Ubuntu', sans-serif;">
<!-- <button type="button" class="btn bg-transparent vagueSearchTypeahead_clear"
style="margin-left: -40px; z-index: 100;">
×
</button> -->
</div>
<div class="col-1">
<button class="btn btn-outline-secondary" style="border-radius: 20px; background-color: #4A372B; color: white;" data-tippy-content="Search"
onclick="vagueSearch()">
<div class="fas"></div>
</button>
</div>
</div>
<div class="row" style="padding-top: 20px; padding-bottom: 30px; padding-left: 310px;">
<div class="col-lg-5 col-sm-4 mt-1 d-flex justify-content-center justify-content-md-end">
<button type="button" class="btn btn-success" style="font-family: 'Ubuntu', sans-serif; background-color: #009F6B"
onclick="window.open('papers.html','_self').focus();">
Advanced Search
</button>
</div>
<!-- <div class="col-lg-2 col-sm-4 mt-1 d-flex justify-content-center justify-content-md-center">
<button type="button" class="btn btn-success" style="font-family: 'Ubuntu', sans-serif;" onclick="window.open('papers_vague.html?feelingLucky=true','_self').focus();">
I'm Fielding Lucky
</button>
</div> -->
<!-- <div class="col-lg-5 col-sm-4 mt-1 d-flex justify-content-center justify-content-md-start">
<button type="button" class="btn btn-success" style="font-family: 'Ubuntu', sans-serif;" onclick="window.open('add_paper.html','_self').focus();">
Add/Edit Paper
</button>
</div> -->
</div>
<!-- Sub-title -->
<!-- <p style="text-align: center; font-size:normal;"><a href="https://neuralfields.cs.brown.edu/eg22.html">Eurographics 2022 STAR</a> | <a href="https://neuralfields.cs.brown.edu/cvpr22.html">CVPR 2022 Tutorial</a></p> -->
<!-- <p style="text-align: center; font-size:normal; font-style: italic; color: #adadad;">A review and database of <a href="faq.html">neural fields</a> in visual computing and beyond.</p> -->
<!-- <div class="container" style="padding-bottom: 60px;">
<div class="row">
<div class="col-5"></div>
<div class="col-2">
<a href="https://arxiv.org/pdf/2111.11426.pdf" target="_blank">
<image src="static/images/our_paper_first_page.png" style="width: 100%; min-width: 100px; border: 1px solid black;">
</a>
<center>
<a class="fas" style="cursor: pointer; color: #4A372B;;" href="https://arxiv.org/abs/2111.11426" target="_blank"> <span style="font-family: 'Ubuntu', sans-serif; color: #4A372B;">arXiv</span> </a>
<a class="fas" style="cursor: pointer; color: #4A372B;;" href="https://arxiv.org/pdf/2111.11426.pdf" target="_blank"> <span style="font-family: 'Ubuntu', sans-serif; color: #4A372B;">PDF</span> </a>
<a class="fas" style="cursor: pointer; color: #4A372B;" onclick="copyBibtex()"> <span style="font-family: 'Ubuntu', sans-serif; color: #4A372B;">BibTeX</span></a>
</center>
</div>
<div class="col-5"></div>
</div>
</div> -->
<script src="static/js/modules/typeaheadSetup.js"></script>
<script src="static/js/views/view_utils.js"></script>
<script src="static/js/views/index.js"></script>
</div>
</div>
<!-- body block ends here-->
<!-- Footer -->
<footer class="footer" style="background-color: #AEC6CF; position: fixed; bottom: 0px; width: 100%; height: 3vh; display: flex; justify-content: center; align-items: center; ">
</footer>
<!-- Code for hash tags -->
<script type="text/javascript">
$(document).ready(function () {
if (window.location.hash !== "") {
$(`a[href="${window.location.hash}"]`).tab("show");
}
$("a[data-toggle='tab']").on("shown.bs.tab", function (e) {
const hash = $(e.target).attr("href");
if (hash.substr(0, 1) === "#") {
const position = $(window).scrollTop();
window.location.replace(`#${hash.substr(1)}`);
$(window).scrollTop(position);
}
});
});
</script>
<!-- footer block ends here -->
</body>
</html>