fix: broken links in the resume

This commit is contained in:
Laureηt 2021-10-11 21:21:00 +02:00
parent 3f31251769
commit 0453a51a18
No known key found for this signature in database
GPG key ID: D88C6B294FD40994
3 changed files with 5 additions and 5 deletions

View file

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

View file

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

View file

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