tweaks
This commit is contained in:
parent
bb209d3d95
commit
33ae7fa79a
10 changed files with 64 additions and 50 deletions
10
_config.yml
10
_config.yml
|
@ -10,8 +10,12 @@ pygments: true
|
|||
style: light
|
||||
|
||||
title: 'Gaspard Jankowiak · Ceremade · Université Paris Dauphine'
|
||||
header-title: 'Page personnelle de Gaspard Jankowiak'
|
||||
header-subtitle: 'Thésard au Ceremade · Université Paris Dauphine<br><span>jankowiak</span>@<span>ceremade.dauphine.fr</span>'
|
||||
header-homelink: '/'
|
||||
header-title-fr: 'Page personnelle de Gaspard Jankowiak'
|
||||
header-subtitle-fr: 'Thésard au Ceremade · Université Paris Dauphine<br><span>jankowiak</span>@<span>ceremade.dauphine.fr</span>'
|
||||
header-homelink-fr: '/'
|
||||
|
||||
header-title-en: "Gaspard Jankowiak's homepage"
|
||||
header-subtitle-en: 'PhD student at Ceremade · Université Paris Dauphine<br> <span>jankowiak</span>@<span>ceremade.dauphine.fr</span>'
|
||||
header-homelink-en: '/en'
|
||||
|
||||
pretty: permalinks
|
||||
|
|
7
_data/sources.yaml
Normal file
7
_data/sources.yaml
Normal file
|
@ -0,0 +1,7 @@
|
|||
arxiv:
|
||||
name: arXiv
|
||||
baseurl: http://arxiv.org/abs/
|
||||
|
||||
hal:
|
||||
name: HAL
|
||||
baseurl: http://hal.archives-ouvertes.fr/hal-
|
|
@ -2,23 +2,29 @@
|
|||
- me
|
||||
- vhn
|
||||
title: "Fractional Sobolev and Hardy-Littlewood-Sobolev inequalities"
|
||||
arxiv: 1404.1028
|
||||
hal: 00972035
|
||||
links:
|
||||
- arxiv: 1404.1028
|
||||
- hal: 00972035
|
||||
id: 4
|
||||
|
||||
- authors:
|
||||
- jd
|
||||
- mje
|
||||
- me
|
||||
title: "The Moser-Trudinger-Onofri inequality"
|
||||
arxiv: 1403.5042
|
||||
hal: 00961363
|
||||
links:
|
||||
- arxiv: 1403.5042
|
||||
- hal: 00961363
|
||||
id: 3
|
||||
|
||||
- authors:
|
||||
- jd
|
||||
- me
|
||||
title: "Sobolev and Hardy-Littlewood-Sobolev inequalities"
|
||||
arxiv: 1312.2568
|
||||
hal: 00915998
|
||||
links:
|
||||
- arxiv: 1312.2568
|
||||
- hal: 00915998
|
||||
id: 2
|
||||
|
||||
- authors:
|
||||
- jd
|
||||
|
@ -26,7 +32,9 @@
|
|||
- pam
|
||||
title: "Stationary solutions of Keller-Segel type crowd motion and herding models: multiplicity and dynamical stability"
|
||||
journal: Mathematics and Mechanics of Complex Systems
|
||||
arxiv: 1305.1715
|
||||
hal: 00821206
|
||||
links:
|
||||
- arxiv: 1305.1715
|
||||
- hal: 00821206
|
||||
id: 1
|
||||
|
||||
# vim: ts=2:sts=2:sw=2
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
{% assign pub = include.pub %}{% assign authors = include.authors %} | {% for a in pub.authors %}{% assign ca = authors[a] %}{% if ca.home %}<a href="{{ca.home)}}">{{ca.name}}</a>{%else%}{{ca.name}}{%endif%}{% if forloop.last %}{%else%}, {% endif %}{% endfor %} | {{pub.title}} |
|
|
@ -1,28 +1,28 @@
|
|||
{% assign pub = include.pub %}{% assign authors = include.authors %}
|
||||
<li>
|
||||
{% assign pub = include.pub %}{% assign authors = include.authors %}{% assign sources = site.data.sources %}
|
||||
<li value="{{pub.id}}">
|
||||
<p class="left">
|
||||
<strong>{{pub.title}}</strong>
|
||||
<span class="right">
|
||||
{% for a in pub.authors %}
|
||||
{% assign ca = authors[a] %}
|
||||
{% if ca.home %}
|
||||
{% for a in pub.authors -%}
|
||||
{% assign ca = authors[a] -%}
|
||||
{% if ca.home -%}
|
||||
<a href="{{ca.home)}}">{{ca.name}}</a>
|
||||
{%else%}
|
||||
{% else -%}
|
||||
{{ca.name}}
|
||||
{%endif%}
|
||||
{% if forloop.last %}{%else%}, {% endif %}
|
||||
{% endfor %}
|
||||
{% endif -%}
|
||||
{% if forloop.last -%}{% else -%},{% endif -%}
|
||||
{% endfor -%}
|
||||
</span>
|
||||
</p>
|
||||
<p class="clear">
|
||||
{% if pub.journal %}<em>{{pub.journal}}</em> {{pub.issue}}{% else %} <em>preprint</em> {% endif %}
|
||||
<span class="right">
|
||||
{% if pub.arxiv %}
|
||||
<span class="paper_link"><a href="http://arxiv.org/abs/{{pub.arxiv}}">arXiv</a></span>
|
||||
{% endif %}
|
||||
{% if pub.hal %}
|
||||
<span class="paper_link"><a href="http://hal.archives-ouvertes.fr/hal-{{pub.hal}}">HAL</a></span>
|
||||
{% endif %}
|
||||
{% for link in pub.links %}
|
||||
{% for l in link %}{% assign k = l[0] %}
|
||||
<span class="paper_link"><a href="{{ sources[k].baseurl}}{{l[1]}}">{{ sources[k].name }}</a></span>
|
||||
{% endfor %}
|
||||
{% if forloop.last -%}{% else -%}·{% endif -%}
|
||||
{% endfor %}
|
||||
</span>
|
||||
</p>
|
||||
</li>
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
{% if page:lang %}
|
||||
<html lang="{{ page:lang }}">
|
||||
{% else %}
|
||||
<html lang="fr">
|
||||
{% endif %}
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>
|
||||
|
@ -41,25 +45,16 @@
|
|||
<div id="wrapper">
|
||||
|
||||
<header>
|
||||
{% if page:header-homelink %}
|
||||
{% assign homelink = page:header-homelink %}
|
||||
{% else %}
|
||||
{% assign homelink = site:header-homelink %}
|
||||
{% assign homelink = site:header-homelink-fr %}
|
||||
{% assign title = site:header-title-fr %}
|
||||
{% assign subtitle = site:header-subtitle-fr %}
|
||||
{% if page:lang == 'en' %}
|
||||
{% assign homelink = site:header-homelink-en %}
|
||||
{% assign title = site:header-title-en %}
|
||||
{% assign subtitle = site:header-subtitle-en %}
|
||||
{% endif %}
|
||||
<h1><a href="{{ homelink }}">
|
||||
{% if page:header-title %}
|
||||
{{ page:header-title }}
|
||||
{% else %}
|
||||
{{ site:header-title }}
|
||||
{% endif %}
|
||||
</a></h1>
|
||||
<p>
|
||||
{% if page:header-subtitle %}
|
||||
{{ page:header-subtitle }}
|
||||
{% else %}
|
||||
{{ site:header-subtitle }}
|
||||
{% endif %}
|
||||
</p>
|
||||
<h1><a href="{{ homelink }}">{{ title }}</a></h1>
|
||||
<p>{{ subtitle }}</p>
|
||||
<hr>
|
||||
</header>
|
||||
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
---
|
||||
layout: default
|
||||
header-title: Gaspard Jankowiak's homepage
|
||||
header-subtitle: PhD student at Ceremade · Université Paris Dauphine<br> <span>jankowiak</span>@<span>ceremade.dauphine.fr</span>
|
||||
header-homelink: /en
|
||||
math: false
|
||||
lang: en
|
||||
---
|
||||
|
||||
[FR](/)\|EN
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
layout: default
|
||||
math: false
|
||||
lang: en
|
||||
---
|
||||
|
||||
[FR](/divers)\|EN
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
layout: default
|
||||
math: false
|
||||
lang: en
|
||||
---
|
||||
|
||||
[FR](/publications)\|EN
|
||||
|
|
|
@ -3,7 +3,7 @@ layout: default
|
|||
math: false
|
||||
---
|
||||
|
||||
FR\|[EN](/en)
|
||||
FR\|[EN](/en/)
|
||||
{: .switcher}
|
||||
{% include nav_fr.html %}
|
||||
|
||||
|
|
Loading…
Reference in a new issue