feat: added tags for interests

This commit is contained in:
Laureηt 2020-11-26 23:54:25 +01:00
parent 00993eff79
commit f716c1f813
2 changed files with 32 additions and 34 deletions

View file

@ -282,17 +282,15 @@
{ {
"name": "GitHub", "name": "GitHub",
"summary": "Regular GitHub user and tinkerer.", "summary": "Regular GitHub user and tinkerer.",
"keywords": [ "tags": [
"GitHub", "Git",
"git",
"Open Source" "Open Source"
] ]
}, },
{ {
"name": "Electronics", "name": "Electronics",
"summary": "Maker at heart.", "summary": "Maker at heart.",
"keywords": [ "tags": [
"Electronics",
"Arduino", "Arduino",
"PCB Design" "PCB Design"
] ]
@ -300,40 +298,35 @@
{ {
"name": "Archery", "name": "Archery",
"summary": "Practiced for a couple years the art of precision & accuracy.", "summary": "Practiced for a couple years the art of precision & accuracy.",
"keywords": [ "tags": [
"Archery",
"Bow",
"Arrow",
"Precision", "Precision",
"Accuracy" "Accuracy",
]
},
{
"name": "Climbing",
"summary": "A nice way to relieve stress",
"keywords": [
"Climbing",
"Strength"
]
},
{
"name": "Aquariums",
"summary": "Tamagochis but with real responsabilities.",
"keywords": [
"Aquarium",
"Water",
"Fish",
"Patience" "Patience"
] ]
}, },
{ {
"name": "Plants", "name": "Climbing",
"summary": "The environnement is a cool thing", "summary": "A nice way to relieve stress.",
"keywords": [ "tags": [
"Plants", "Strength",
"Trees", "Perseverance"
"Gardening", ]
"Ecological" },
{
"name": "Aquariums",
"summary": "Tamagochis, but with real responsabilities.",
"tags": [
"Patience",
"Perfectionism"
]
},
{
"name": "Gardening",
"summary": "The environnement is kinda useful.",
"tags": [
"Flowers",
"Cacti",
"Ecology"
] ]
} }
] ]

View file

@ -63,6 +63,11 @@ username: Laureηt
<section> <section>
<h3>{{ interest.name }}</h3> <h3>{{ interest.name }}</h3>
<p>{{ interest.summary }}</p> <p>{{ interest.summary }}</p>
<ul>
{% for tag in interest.tags %}
<li class="tag">{{ tag }}</li>
{% endfor %}
</ul>
</section> </section>
{% endfor %} {% endfor %}