Skip to content

Commit ed06c5a

Browse files
committed
enable link to shamrock paper and fix css
1 parent 1fed283 commit ed06c5a

File tree

3 files changed

+92
-19
lines changed

3 files changed

+92
-19
lines changed

index.html

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717

1818
<body>
1919

20-
<body>
2120
<header class="site-header">
2221

2322
<div class="wrapper">
@@ -37,7 +36,6 @@
3736

3837
</div>
3938
</header>
40-
</body>
4139

4240

4341
<div class="page-content">
@@ -57,9 +55,9 @@
5755
<h1 id="description">Description</h1>
5856
<p>An general purpose code tu perform hydrodynamical simulations with various numerical methods.
5957
This code is platform agnostic, meaning that it can run on a laptop up to a multi-GPU cluster</p>
60-
<p>The code works using MPI with <a href="https://www.khronos.org/sycl/">Sycl</a> </p>
58+
<p>The code works using MPI with <a href="https://www.khronos.org/sycl/">SYCL</a> </p>
6159
<h2 id="status">Status</h2>
62-
<p>First paper comming soon, here is a small teaser</p>
60+
<p>First paper submitted to MNRAS</p>
6361

6462

6563
<div class="profile-picdiv">

publications.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,26 @@
4646
<div class="post">
4747

4848
<h1 id="description">Publications</h1>
49+
50+
<hr>
51+
52+
53+
<h2>Not yet acceptet</h2>
54+
55+
<ol class="publications reverse">
56+
<li>
57+
<p class="title">The Shamrock code: I- Smoothed Particle Hydrodynamics on GPUs.</p>
58+
<p class="coauthors">with <a href="https://perso.ens-lyon.fr/guillaume.laibe/index.php">Guillaume Laibe</a> and Yona Lapyere.</p>
59+
<p class="journal">submitted in Monthly Notices of the Royal Astronomical Society , </p>
60+
<p class="badges">
61+
<span class="id"><a href="https://tdavidcl.github.io/papers/Shamrock_1___MNRAS.pdf"><span class="id-type id-arxiv">pdf</span><span class="id-key">submitted version</span></a></span>
62+
</p>
63+
<p>(The code is described as public in the paper. This will be when the paper is accepted.)</p>
64+
</li>
65+
</ol>
66+
67+
<h2>Published</h2>
68+
4969
<p>None for now 😉</p>
5070

5171
</p>

style.css

Lines changed: 70 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11

22
body {margin:0;}
3+
4+
5+
body {
6+
margin: auto;
7+
padding: 1em;
8+
line-height: 1.5;
9+
}
10+
11+
body {
12+
font: 400 12px "Helvetica Neue",Helvetica,Arial,sans-serif;
13+
color: #111;
14+
-webkit-text-size-adjust: 100%;
15+
-moz-font-feature-settings: "kern" 1;
16+
font-feature-settings: "kern" 1;
17+
font-kerning: normal;
18+
font-family:Helvetica, Arial, sans-serif;font-size:16px;line-height:1.5;font-weight:300;background-color:#fdfdfd;
19+
}
20+
21+
322
ul {
423

524
list-style-type: none;
@@ -18,13 +37,6 @@ li {
1837
li:last-child {
1938
border-right: none;
2039
}
21-
li a {
22-
display: block;
23-
color: black;
24-
text-align: center;
25-
padding: 14px 16px;
26-
text-decoration: none;
27-
}
2840
li a:hover:not(.active) {
2941
background-color: #D8D8D8;
3042
}
@@ -35,7 +47,7 @@ li a:hover:not(.active) {
3547
.wrap:before,
3648
.wrap:after{content:"";display:table;}
3749
.wrap:after{clear:both;}
38-
.wrap{max-width:1000px;padding:0 30px;margin:0 auto;zoom:1;}
50+
.wrap{max-width:740px;padding:0 30px;margin:0 auto;zoom:1;}
3951
.post-content{margin:0 0 30px;}
4052
.post-content > *{margin:20px 0;}
4153
.post-content h1,
@@ -72,12 +84,6 @@ body{font-family:Helvetica, Arial, sans-serif;font-size:16px;line-height:1.5;fon
7284
width: 90%;
7385
}
7486

75-
body {
76-
max-width: 800px;
77-
margin: auto;
78-
padding: 1em;
79-
line-height: 1.5;
80-
}
8187

8288
/* header and footer areas */
8389
.menu { padding: 0; }
@@ -205,4 +211,53 @@ a, a:visited {
205211
padding: 5px;
206212
border-radius: 50%;
207213
width:500px;
208-
}
214+
}
215+
216+
217+
218+
219+
220+
p {
221+
222+
margin-top: 0.5em;
223+
margin-bottom: 0.5em;
224+
}
225+
226+
ol.reverse {
227+
display: flex;
228+
flex-direction: column-reverse;
229+
}
230+
ol.publications {
231+
margin-left: 0;
232+
padding-left: 30px;
233+
line-height: 1em;
234+
}
235+
p.badges {
236+
margin-bottom: 5px;
237+
}
238+
.id {
239+
font-size: .75rem;
240+
white-space: nowrap;
241+
font-family: monospace;
242+
}
243+
.id-arxiv {
244+
background-color: #d9534f;
245+
}
246+
.id-type {
247+
border-radius: 4px 0 0 4px;
248+
padding-left: 0.6em;
249+
padding-right: 0.5em;
250+
color: white;
251+
}
252+
.id-key {
253+
border-radius: 0 4px 4px 0;
254+
padding-left: 0.5em;
255+
padding-right: 0.6em;
256+
color: #337ab7;
257+
background-color: whitesmoke;
258+
margin-right: 0.4em;
259+
}
260+
.id-doi {
261+
background-color: #0a0a0a;
262+
}
263+

0 commit comments

Comments
 (0)