feat: added tags for interests
This commit is contained in:
parent
00993eff79
commit
f716c1f813
|
@ -282,17 +282,15 @@
|
|||
{
|
||||
"name": "GitHub",
|
||||
"summary": "Regular GitHub user and tinkerer.",
|
||||
"keywords": [
|
||||
"GitHub",
|
||||
"git",
|
||||
"tags": [
|
||||
"Git",
|
||||
"Open Source"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Electronics",
|
||||
"summary": "Maker at heart.",
|
||||
"keywords": [
|
||||
"Electronics",
|
||||
"tags": [
|
||||
"Arduino",
|
||||
"PCB Design"
|
||||
]
|
||||
|
@ -300,40 +298,35 @@
|
|||
{
|
||||
"name": "Archery",
|
||||
"summary": "Practiced for a couple years the art of precision & accuracy.",
|
||||
"keywords": [
|
||||
"Archery",
|
||||
"Bow",
|
||||
"Arrow",
|
||||
"tags": [
|
||||
"Precision",
|
||||
"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",
|
||||
"Accuracy",
|
||||
"Patience"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Plants",
|
||||
"summary": "The environnement is a cool thing",
|
||||
"keywords": [
|
||||
"Plants",
|
||||
"Trees",
|
||||
"Gardening",
|
||||
"Ecological"
|
||||
"name": "Climbing",
|
||||
"summary": "A nice way to relieve stress.",
|
||||
"tags": [
|
||||
"Strength",
|
||||
"Perseverance"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Aquariums",
|
||||
"summary": "Tamagochis, but with real responsabilities.",
|
||||
"tags": [
|
||||
"Patience",
|
||||
"Perfectionism"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Gardening",
|
||||
"summary": "The environnement is kinda useful.",
|
||||
"tags": [
|
||||
"Flowers",
|
||||
"Cacti",
|
||||
"Ecology"
|
||||
]
|
||||
}
|
||||
]
|
||||
|
|
|
@ -63,6 +63,11 @@ username: Laureηt
|
|||
<section>
|
||||
<h3>{{ interest.name }}</h3>
|
||||
<p>{{ interest.summary }}</p>
|
||||
<ul>
|
||||
{% for tag in interest.tags %}
|
||||
<li class="tag">{{ tag }}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</section>
|
||||
{% endfor %}
|
||||
|
||||
|
|
Reference in a new issue