-
Notifications
You must be signed in to change notification settings - Fork 0
/
External.html
75 lines (60 loc) · 2.07 KB
/
External.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
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://d3js.org/d3.v6.min.js"></script>
<script src="https://d3js.org/topojson.v1.min.js"></script>
<style>
.country {
fill: #5b6871;
stroke: #8899a6;
stroke-width: 0.5px;
}
.country-Color {
fill: #8edee1;
stroke: #88c2c4;
stroke-width: 1px;
}
.country-Color:hover {
fill: #4ad043;
}
#mapPosition {
width: 100%;
height: 100%;
}
</style>
<title>External Links</title>
</head>
<body>
<!-- ############### Insert NAVBAR with jQuery ############## -->
<div id="navbarJQ"></div>
<!-- ############### SECTION 1 ############## -->
<section class="container mb-1 content-BoxGCUExternal " style="background: #2b353e;">
<!-- GRAD STUDENT 1 -->
<div class="row align-items-center content-BoxGCUExternal">
<div class="col">
<h3 class="customh1_External">
<a class="customlink" style="color:#f9ea76" href="https://ml4physicalsciences.github.io/2023/files/NeurIPS_ML4PS_2023_94.pdf">
NeurIPS 2023
</a>
</h3>
</div>
</div>
<div class="row align-items-center content-BoxGCUExternal">
<div class="col">
Our paper, "Orbital-Free Density Functional Theory with Continuous Normalizing Flows", got accepted at
the Machine Learning and the Physical Sciences Workshop at NeurIPS 2023
</div>
</div>
</section>
<div style="height: 60vh;"></div>
<!-- ############### FOOTER ############## -->
<div id="footerJQ"></div>
<!-- ################ SCRIPTS ################################### -->
<script>
$("#navbarJQ").load("navbar.html");
$("#footerJQ").load("footer.html");
</script>
<script src="appMap.js"></script>
</body>
</html>