fix: broken links in the resume
This commit is contained in:
parent
3f31251769
commit
0453a51a18
|
@ -48,14 +48,14 @@
|
|||
{
|
||||
"title": "Pagerank",
|
||||
"repo": "",
|
||||
"pdf": "{{ '/content/pagerank.pdf' | url }}",
|
||||
"pdf": "/content/pagerank.pdf",
|
||||
"role": "Author",
|
||||
"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",
|
||||
"repo": "",
|
||||
"pdf": "{{ '/content/modem.pdf' | url }}",
|
||||
"pdf": "/content/modem.pdf",
|
||||
"role": "Author",
|
||||
"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",
|
||||
"repo": "",
|
||||
"pdf": "{{ '/content/pagerank.pdf' | url }}",
|
||||
"pdf": "/content/pagerank.pdf",
|
||||
"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."
|
||||
},
|
||||
{
|
||||
"title": "Modem de fréquence",
|
||||
"repo": "",
|
||||
"pdf": "{{ '/content/modem.pdf' | url }}",
|
||||
"pdf": "/content/modem.pdf",
|
||||
"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."
|
||||
}
|
||||
|
|
|
@ -67,7 +67,7 @@ permalink: "resume/{{ resume.locale }}/index.html"
|
|||
<p>{{ project.description }}</p>
|
||||
<div class="project-links">
|
||||
{% 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 %}
|
||||
{% if project.repo %}
|
||||
<a class="fa fa-git" href="{{ project.repo }}"></a>
|
||||
|
|
Reference in a new issue