fix: broken links in the resume
This commit is contained in:
parent
3f31251769
commit
0453a51a18
|
@ -48,14 +48,14 @@
|
||||||
{
|
{
|
||||||
"title": "Pagerank",
|
"title": "Pagerank",
|
||||||
"repo": "",
|
"repo": "",
|
||||||
"pdf": "{{ '/content/pagerank.pdf' | url }}",
|
"pdf": "/content/pagerank.pdf",
|
||||||
"role": "Author",
|
"role": "Author",
|
||||||
"description": "Implementation of an iterative algorithm in Ada to compute the pagerank of a given network as quickly and efficiently as possible."
|
"description": "Implementation of an iterative algorithm in Ada to compute the pagerank of a given network as quickly and efficiently as possible."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"title": "Frequency Modem",
|
"title": "Frequency Modem",
|
||||||
"repo": "",
|
"repo": "",
|
||||||
"pdf": "{{ '/content/modem.pdf' | url }}",
|
"pdf": "/content/modem.pdf",
|
||||||
"role": "Author",
|
"role": "Author",
|
||||||
"description": "Matlab modeling of a modem capable of transmitting information (a sequence of bits) reliably via an imperfect transmission channel."
|
"description": "Matlab modeling of a modem capable of transmitting information (a sequence of bits) reliably via an imperfect transmission channel."
|
||||||
}
|
}
|
||||||
|
|
|
@ -48,14 +48,14 @@
|
||||||
{
|
{
|
||||||
"title": "Pagerank",
|
"title": "Pagerank",
|
||||||
"repo": "",
|
"repo": "",
|
||||||
"pdf": "{{ '/content/pagerank.pdf' | url }}",
|
"pdf": "/content/pagerank.pdf",
|
||||||
"role": "Author",
|
"role": "Author",
|
||||||
"description": "Mise en œuvre d'un algorithme itératif en Ada pour calculer le pagerank d'un réseau donné, aussi rapidement et efficacement que possible."
|
"description": "Mise en œuvre d'un algorithme itératif en Ada pour calculer le pagerank d'un réseau donné, aussi rapidement et efficacement que possible."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"title": "Modem de fréquence",
|
"title": "Modem de fréquence",
|
||||||
"repo": "",
|
"repo": "",
|
||||||
"pdf": "{{ '/content/modem.pdf' | url }}",
|
"pdf": "/content/modem.pdf",
|
||||||
"role": "Author",
|
"role": "Author",
|
||||||
"description": "Modélisation Matlab d'un modem capable de transmettre des informations (séquences de bits) de manière fiable via un canal de transmission imparfait."
|
"description": "Modélisation Matlab d'un modem capable de transmettre des informations (séquences de bits) de manière fiable via un canal de transmission imparfait."
|
||||||
}
|
}
|
||||||
|
|
|
@ -67,7 +67,7 @@ permalink: "resume/{{ resume.locale }}/index.html"
|
||||||
<p>{{ project.description }}</p>
|
<p>{{ project.description }}</p>
|
||||||
<div class="project-links">
|
<div class="project-links">
|
||||||
{% if project.pdf %}
|
{% if project.pdf %}
|
||||||
<a class="fa fa-file-pdf-o" href="{{ project.pdf }}"></a>
|
<a class="fa fa-file-pdf-o" href="{{ 'project.pdf' | url }}"></a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if project.repo %}
|
{% if project.repo %}
|
||||||
<a class="fa fa-git" href="{{ project.repo }}"></a>
|
<a class="fa fa-git" href="{{ project.repo }}"></a>
|
||||||
|
|
Reference in a new issue