-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpublications.html
44 lines (41 loc) · 968 Bytes
/
publications.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
---
layout: default
title: Publications
---
<style>
.articles {
list-style: none;
}
.articles li {
margin-bottom: 2rem;
}
.name {
margin: 0 0 .2rem 0;
}
.venue {
margin: 0 0 .5rem 0;
font-style: italic;
}
.tag {
color: #444;
background-color: #eee;
border-radius: 5px;
font-size: .9rem;
padding: .1rem .3rem;
margin-right: .5rem;
}
.files {
display: inline;
font-size: .9rem;
}
.files a {
margin-right: .5rem;
}
</style>
<ul id="publis">
{% capture current_year %}{{ site.time | date: "%Y" }}{% endcapture %}
{% for year in (2017..(current_year+1)) reversed %}
<li><a href="http://haltools.archives-ouvertes.fr/Public/afficheRequetePubli.php?annee_publideb={{ year }}&annee_publifin={{ year }}&labos_exp=naomod&CB_auteur=oui&CB_titre=oui&CB_article=oui&langue=Anglais&tri_exp=typdoc&ordre_aff=TA&Fen=Aff&css=../css/VisuRubriqueEncadre.css">Publications {{ year }}</a></li>
{% endfor %}
</ul>
<script src="js/publis.js"></script>