New Version of README Profile

This commit is contained in:
LucasVbr
2022-06-04 22:27:37 +02:00
parent ccb040e856
commit 3c2c333359
17 changed files with 191 additions and 438 deletions
+22 -14
View File
@@ -1,20 +1,28 @@
{%- from './macros/image.md.jinja' import img -%}
{%- from './macros/link.md.jinja' import a -%}
# Hello there ! <img src="./img/Hi.gif" alt="Wave hand" width="50px" height="50px"/>
<!-- Header -->
{%- include './sections/header.md.jinja' with context %}
I'm Lucàs, a passionate developer from Rodez, France.
{% if weather_status == 200 %}<br>Currently, the weather is: **{{ weather.temperature }}**, **{{ weather.description }}**{% endif %}
<!-- Badges -->
{% include './sections/badges.md.jinja' with context %}
### I code with
{% for image in tools -%}
![{{ image.name }}]({{ image.url }})
{% endfor %}
<!-- About -->
{% include './sections/about.md.jinja' with context %}
### Where to find me
[![Github](https://img.shields.io/badge/GitHub-100000?style=for-the-badge&logo=github&logoColor=white)](https://github.com/LucasVbr)
[![LinkedIn](https://img.shields.io/badge/LinkedIn-0077B5?style=for-the-badge&logo=linkedin&logoColor=white)](https://www.linkedin.com/in/lucasvbr)
[![FreeCodeCamp](https://img.shields.io/badge/freecodecamp-27273D?style=for-the-badge&logo=freecodecamp&logoColor=white)](https://www.freecodecamp.org/LucasVbr)
<!-- Connect With Me -->
{% include './sections/connect-with-me.md.jinja' with context %}
---
<!-- Language and Tools -->
{% include './sections/languages-and-tools.md.jinja' with context %}
<center>
<!-- Stats -->
{% include './sections/stats.md.jinja' with context %}
This README is generated every day.<br>
Last refresh: **{{ today }}**<br>
![Profile Views](https://komarev.com/ghpvc/?username=lucasvbr&amp;label=Profile%20views&amp;color=0e75b6&amp;style=flat)
![FreeCodeCamp Points](https://img.shields.io/freecodecamp/points/lucasvbr?label=FreeCodeCamp%20points)
<br>![Made with love](https://img.shields.io/badge/-made%20with%20%E2%9D%A4%EF%B8%8F-red)
*inspired by [Thomas Guibert](https://github.com/thmsgbrt)*
</center>
-3
View File
@@ -1,3 +0,0 @@
{% macro img(src, alt='image', width='') -%}
<img src="{{ src }}" alt="{{ alt }}" {% if width != '' %}width="{{ width }}"{% endif %}/>
{%- endmacro %}
-3
View File
@@ -1,3 +0,0 @@
{% macro a(href, content) -%}
<a href="{{ href }}">{{ content }}</a>
{%- endmacro %}
-15
View File
@@ -1,15 +0,0 @@
{% for element in data.about -%}
-
{%- for part in element -%}
{{ " " }}
{%- if part.type == "icon" or part.type == "text" -%}
{%- if part.isBold -%}**{%- endif -%}
{{ part.content }}
{%- if part.isBold -%}**{%- endif -%}
{%- elif part.type == "a" -%}
{{ a(part.href, part.content) }}
{%- else -%}
{{"Error: No type found"}}
{%- endif -%}
{%- endfor %}
{% endfor %}
-3
View File
@@ -1,3 +0,0 @@
{% for badge in data.badges -%}
{{ img(badge.src, badge.alt) + " " }}
{%- endfor %}
@@ -1,4 +0,0 @@
## Connect With Me:
{% for image in data.connectWithMe -%}
{{ a(image.href, img(image.src, image.alt, image.width)) }}
{% endfor %}
-19
View File
@@ -1,19 +0,0 @@
<div align="center">
# Hi {{ img(data.hi.src, data.hi.alt, data.hi.width) }}, I'm LucasVbr
### A passionate developer from France
<table>
<thead>
<tr><th>Quote of the day</th></tr>
<thead>
<tbody>
<tr><td><center>
<b>"{{ quote.content }}"</b><br>
<i>by {{ quote.author }}</i>
</center></td></tr>
</tbody>
</table>
</div>
@@ -1,6 +0,0 @@
## Languages and Tools:
{% for images in data.languagesAndTools -%}
{% for image in images -%}
{{ a(image.href, img(image.src, image.alt, image.width)) }}
{% endfor %}
{% endfor -%}
-7
View File
@@ -1,7 +0,0 @@
<div align="center">
{% for image in data.stats -%}
{{ img(image.src, image.alt)}}
{% endfor %}
</div>