This commit is contained in:
Gaspard Jankowiak 2014-04-15 15:06:31 +02:00
commit 33ae7fa79a
10 changed files with 64 additions and 50 deletions

View file

@ -10,8 +10,12 @@ pygments: true
style: light style: light
title: 'Gaspard Jankowiak · Ceremade · Université Paris Dauphine' title: 'Gaspard Jankowiak · Ceremade · Université Paris Dauphine'
header-title: 'Page personnelle de Gaspard Jankowiak' header-title-fr: 'Page personnelle de Gaspard Jankowiak'
header-subtitle: 'Thésard au Ceremade &middot; Université Paris Dauphine<br><span>jankowiak</span>@<span>ceremade.dauphine.fr</span>' header-subtitle-fr: 'Thésard au Ceremade &middot; Université Paris Dauphine<br><span>jankowiak</span>@<span>ceremade.dauphine.fr</span>'
header-homelink: '/' header-homelink-fr: '/'
header-title-en: "Gaspard Jankowiak's homepage"
header-subtitle-en: 'PhD student at Ceremade &middot; Université Paris Dauphine<br> <span>jankowiak</span>@<span>ceremade.dauphine.fr</span>'
header-homelink-en: '/en'
pretty: permalinks pretty: permalinks

7
_data/sources.yaml Normal file
View file

@ -0,0 +1,7 @@
arxiv:
name: arXiv
baseurl: http://arxiv.org/abs/
hal:
name: HAL
baseurl: http://hal.archives-ouvertes.fr/hal-

View file

@ -2,23 +2,29 @@
- me - me
- vhn - vhn
title: "Fractional Sobolev and Hardy-Littlewood-Sobolev inequalities" title: "Fractional Sobolev and Hardy-Littlewood-Sobolev inequalities"
arxiv: 1404.1028 links:
hal: 00972035 - arxiv: 1404.1028
- hal: 00972035
id: 4
- authors: - authors:
- jd - jd
- mje - mje
- me - me
title: "The Moser-Trudinger-Onofri inequality" title: "The Moser-Trudinger-Onofri inequality"
arxiv: 1403.5042 links:
hal: 00961363 - arxiv: 1403.5042
- hal: 00961363
id: 3
- authors: - authors:
- jd - jd
- me - me
title: "Sobolev and Hardy-Littlewood-Sobolev inequalities" title: "Sobolev and Hardy-Littlewood-Sobolev inequalities"
arxiv: 1312.2568 links:
hal: 00915998 - arxiv: 1312.2568
- hal: 00915998
id: 2
- authors: - authors:
- jd - jd
@ -26,7 +32,9 @@
- pam - pam
title: "Stationary solutions of Keller-Segel type crowd motion and herding models: multiplicity and dynamical stability" title: "Stationary solutions of Keller-Segel type crowd motion and herding models: multiplicity and dynamical stability"
journal: Mathematics and Mechanics of Complex Systems journal: Mathematics and Mechanics of Complex Systems
arxiv: 1305.1715 links:
hal: 00821206 - arxiv: 1305.1715
- hal: 00821206
id: 1
# vim: ts=2:sts=2:sw=2 # vim: ts=2:sts=2:sw=2

View file

@ -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}} |

View file

@ -1,28 +1,28 @@
{% assign pub = include.pub %}{% assign authors = include.authors %} {% assign pub = include.pub %}{% assign authors = include.authors %}{% assign sources = site.data.sources %}
<li> <li value="{{pub.id}}">
<p class="left"> <p class="left">
<strong>{{pub.title}}</strong> <strong>{{pub.title}}</strong>
<span class="right"> <span class="right">
{% for a in pub.authors %} {% for a in pub.authors -%}
{% assign ca = authors[a] %} {% assign ca = authors[a] -%}
{% if ca.home %} {% if ca.home -%}
<a href="{{ca.home)}}">{{ca.name}}</a> <a href="{{ca.home)}}">{{ca.name}}</a>
{%else%} {% else -%}
{{ca.name}} {{ca.name}}
{%endif%} {% endif -%}
{% if forloop.last %}{%else%}, {% endif %} {% if forloop.last -%}{% else -%},{% endif -%}
{% endfor %} {% endfor -%}
</span> </span>
</p> </p>
<p class="clear"> <p class="clear">
{% if pub.journal %}<em>{{pub.journal}}</em> {{pub.issue}}{% else %} <em>preprint</em> {% endif %} {% if pub.journal %}<em>{{pub.journal}}</em> {{pub.issue}}{% else %} <em>preprint</em> {% endif %}
<span class="right"> <span class="right">
{% if pub.arxiv %} {% for link in pub.links %}
<span class="paper_link"><a href="http://arxiv.org/abs/{{pub.arxiv}}">arXiv</a></span> {% for l in link %}{% assign k = l[0] %}
{% endif %} <span class="paper_link"><a href="{{ sources[k].baseurl}}{{l[1]}}">{{ sources[k].name }}</a></span>
{% if pub.hal %} {% endfor %}
<span class="paper_link"><a href="http://hal.archives-ouvertes.fr/hal-{{pub.hal}}">HAL</a></span> {% if forloop.last -%}{% else -%}&middot;{% endif -%}
{% endif %} {% endfor %}
</span> </span>
</p> </p>
</li> </li>

View file

@ -1,5 +1,9 @@
<!doctype html> <!doctype html>
<html> {% if page:lang %}
<html lang="{{ page:lang }}">
{% else %}
<html lang="fr">
{% endif %}
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<title> <title>
@ -41,25 +45,16 @@
<div id="wrapper"> <div id="wrapper">
<header> <header>
{% if page:header-homelink %} {% assign homelink = site:header-homelink-fr %}
{% assign homelink = page:header-homelink %} {% assign title = site:header-title-fr %}
{% else %} {% assign subtitle = site:header-subtitle-fr %}
{% assign homelink = site:header-homelink %} {% if page:lang == 'en' %}
{% assign homelink = site:header-homelink-en %}
{% assign title = site:header-title-en %}
{% assign subtitle = site:header-subtitle-en %}
{% endif %} {% endif %}
<h1><a href="{{ homelink }}"> <h1><a href="{{ homelink }}">{{ title }}</a></h1>
{% if page:header-title %} <p>{{ subtitle }}</p>
{{ page:header-title }}
{% else %}
{{ site:header-title }}
{% endif %}
</a></h1>
<p>
{% if page:header-subtitle %}
{{ page:header-subtitle }}
{% else %}
{{ site:header-subtitle }}
{% endif %}
</p>
<hr> <hr>
</header> </header>

View file

@ -1,8 +1,7 @@
--- ---
layout: default layout: default
header-title: Gaspard Jankowiak's homepage math: false
header-subtitle: PhD student at Ceremade &middot; Université Paris Dauphine<br> <span>jankowiak</span>@<span>ceremade.dauphine.fr</span> lang: en
header-homelink: /en
--- ---
[FR](/)\|EN [FR](/)\|EN

View file

@ -1,6 +1,7 @@
--- ---
layout: default layout: default
math: false math: false
lang: en
--- ---
[FR](/divers)\|EN [FR](/divers)\|EN

View file

@ -1,6 +1,7 @@
--- ---
layout: default layout: default
math: false math: false
lang: en
--- ---
[FR](/publications)\|EN [FR](/publications)\|EN

View file

@ -3,7 +3,7 @@ layout: default
math: false math: false
--- ---
FR\|[EN](/en) FR\|[EN](/en/)
{: .switcher} {: .switcher}
{% include nav_fr.html %} {% include nav_fr.html %}