Add tags to projects
This commit is contained in:
parent
513a975459
commit
1a19666952
|
|
@ -11,6 +11,11 @@
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<h3>{{ title }}</h3>
|
<h3>{{ title }}</h3>
|
||||||
<p>{{ description }}</p>
|
<p>{{ description }}</p>
|
||||||
|
<ul class="list-inline">
|
||||||
|
{% for tag in tags %}
|
||||||
|
<li><span class="badge">{{ tag }}</span></li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</article>
|
</article>
|
||||||
</li>
|
</li>
|
||||||
|
|
@ -6,7 +6,8 @@
|
||||||
background: data.background,
|
background: data.background,
|
||||||
links: data.links,
|
links: data.links,
|
||||||
title: data.title,
|
title: data.title,
|
||||||
description: data.description %}
|
description: data.description,
|
||||||
|
tags: data.tags %}
|
||||||
{%- endfor -%}
|
{%- endfor -%}
|
||||||
</ul>
|
</ul>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
@ -104,4 +104,16 @@ main li {
|
||||||
section {
|
section {
|
||||||
margin-block: 3.5rem;
|
margin-block: 3.5rem;
|
||||||
padding-block: 2rem;
|
padding-block: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.badge {
|
||||||
|
display: inline-flex;
|
||||||
|
justify-content: center;
|
||||||
|
line-height: 1;
|
||||||
|
padding: .2em .3em;
|
||||||
|
font-size: .75em;
|
||||||
|
border-radius: .4em;
|
||||||
|
color: var(--badge-color, var(--color-secondary-600));
|
||||||
|
background: color-mix(in srgb, var(--badge-color, var(--color-secondary-600)) 40%, white 100%);
|
||||||
|
border: 1px solid color-mix(in srgb, var(--badge-color, var(--color-secondary-600)) 90%, white 100%);
|
||||||
}
|
}
|
||||||
|
|
@ -5,6 +5,9 @@ links:
|
||||||
- title: Voir sur Github
|
- title: Voir sur Github
|
||||||
link: https://github.com
|
link: https://github.com
|
||||||
icon: simple-icons:github
|
icon: simple-icons:github
|
||||||
|
tags:
|
||||||
|
- C#
|
||||||
|
- Unity
|
||||||
---
|
---
|
||||||
|
|
||||||
* desc1
|
* desc1
|
||||||
|
|
|
||||||
|
|
@ -5,4 +5,6 @@ links:
|
||||||
- title: Voir sur Github
|
- title: Voir sur Github
|
||||||
link: https://github.com
|
link: https://github.com
|
||||||
icon: simple-icons:github
|
icon: simple-icons:github
|
||||||
|
tags:
|
||||||
|
- Python
|
||||||
---
|
---
|
||||||
|
|
@ -8,4 +8,7 @@ links:
|
||||||
- title: Voir sur Github
|
- title: Voir sur Github
|
||||||
link: https://github.com
|
link: https://github.com
|
||||||
icon: simple-icons:github
|
icon: simple-icons:github
|
||||||
|
tags:
|
||||||
|
- PHP
|
||||||
|
- LDAP
|
||||||
---
|
---
|
||||||
|
|
@ -8,4 +8,7 @@ links:
|
||||||
- title: Voir sur Github
|
- title: Voir sur Github
|
||||||
link: https://github.com
|
link: https://github.com
|
||||||
icon: simple-icons:github
|
icon: simple-icons:github
|
||||||
|
tags:
|
||||||
|
- JS
|
||||||
|
- IOT
|
||||||
---
|
---
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
---
|
---
|
||||||
title: Snake
|
title: Snake
|
||||||
description: Un snake réalisé en Java
|
description: Un snake réalisé en Java
|
||||||
background: rgb(255, 143, 143)
|
|
||||||
links:
|
links:
|
||||||
- title: Voir sur Github
|
- title: Voir sur Github
|
||||||
link: https://github.com
|
link: https://github.com
|
||||||
icon: simple-icons:github
|
icon: simple-icons:github
|
||||||
|
tags:
|
||||||
|
- Java
|
||||||
---
|
---
|
||||||
Loading…
Reference in a new issue