mirror of
https://github.com/LucasVbr/LucasVbr.git
synced 2026-05-13 17:11:52 +00:00
25 lines
425 B
Plaintext
25 lines
425 B
Plaintext
{% from "model/macro.njk" import a, img with context %}
|
|
|
|
# Hi, I'm {{ name }}! 👋
|
|
|
|
## 🚀 About Me
|
|
{{ about }}
|
|
|
|
## 🔗 Links
|
|
{% for link in links -%}
|
|
{{ a(link.href, img(link.img.src, link.img.alt)) }}
|
|
{% endfor %}
|
|
|
|
## 🛠 Skills
|
|
{% for skill in skills -%}
|
|
{{ img(skill.src, skill.alt) }}
|
|
{% endfor %}
|
|
|
|
---
|
|
|
|
<div align="center">
|
|
|
|
{% for badge in badges -%}
|
|
{{ img(badge.src, badge.alt) }}
|
|
{% endfor %}
|
|
</div> |