mylloon.fr/templates/portfolio.html

54 lines
1.5 KiB
HTML
Raw Normal View History

2023-02-09 10:45:59 +01:00
<!DOCTYPE html>
<html class="index" lang="fr">
2023-04-24 17:22:12 +02:00
<head dir="ltr">
{{>head.html}}
</head>
2023-02-09 10:45:59 +01:00
<body>
2023-10-09 22:38:59 +02:00
<header>{{>navbar.html}}</header>
2023-04-11 02:13:17 +02:00
{{#data}}
2023-10-09 22:38:59 +02:00
<main>
<h1 id="title">Projets qui me tiennent à coeur</h1>
<div id="content">
<h2 class="subtitle">Bots</h2>
<div class="subcontent">
{{#bots_app}} {{#metadata}} {{#info}}
<h3 class="subsubtitle">
<a target="_blank" href="{{link}} ">{{title}}</a>
</h3>
{{/info}} {{/metadata}}
<div class="subcontent">{{&content}}</div>
{{/bots_app}} {{^bots_app}}
<p>{{bots_loc}} {{err_msg}}</p>
{{/bots_app}}
<br />
</div>
<h2 class="subtitle">
<a target="_blank" href="https://git.mylloon.fr/Paris8"
>Projet de l'université</a
>
</h2>
<div class="subcontent">
{{&univ_content}} {{^univ_content}}
<p>{{univ_loc}} {{err_msg}}</p>
{{/univ_content}}
</div>
2023-04-19 16:57:16 +02:00
2023-10-09 22:38:59 +02:00
<h2 class="subtitle">Projets perso</h2>
<div class="subcontent">
{{#persos_app}} {{#metadata}} {{#info}}
<h3 class="subsubtitle">
<a target="_blank" href="{{link}} ">{{title}}</a>
</h3>
{{/info}} {{/metadata}}
<div class="subcontent">{{&content}}</div>
{{/persos_app}} {{^persos_app}}
<p>{{persos_loc}} {{err_msg}}</p>
{{/persos_app}}
<br />
</div>
2023-02-09 10:45:59 +01:00
</div>
2023-10-09 22:38:59 +02:00
</main>
2023-04-19 16:57:30 +02:00
{{/data}} {{>footer.html}}
2023-02-09 10:45:59 +01:00
</body>
</html>