mirror of
https://github.com/LucasVbr/LucasVbr.git
synced 2026-07-09 14:27:46 +00:00
New Version of README Profile
This commit is contained in:
+22
-14
@@ -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 -%}
|
||||

|
||||
{% endfor %}
|
||||
|
||||
<!-- About -->
|
||||
{% include './sections/about.md.jinja' with context %}
|
||||
### Where to find me
|
||||
[](https://github.com/LucasVbr)
|
||||
[](https://www.linkedin.com/in/lucasvbr)
|
||||
[](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>
|
||||

|
||||

|
||||
<br>
|
||||
|
||||
*inspired by [Thomas Guibert](https://github.com/thmsgbrt)*
|
||||
|
||||
</center>
|
||||
@@ -1,3 +0,0 @@
|
||||
{% macro img(src, alt='image', width='') -%}
|
||||
<img src="{{ src }}" alt="{{ alt }}" {% if width != '' %}width="{{ width }}"{% endif %}/>
|
||||
{%- endmacro %}
|
||||
@@ -1,3 +0,0 @@
|
||||
{% macro a(href, content) -%}
|
||||
<a href="{{ href }}">{{ content }}</a>
|
||||
{%- endmacro %}
|
||||
@@ -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 %}
|
||||
@@ -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 %}
|
||||
@@ -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 -%}
|
||||
@@ -1,7 +0,0 @@
|
||||
<div align="center">
|
||||
|
||||
{% for image in data.stats -%}
|
||||
{{ img(image.src, image.alt)}}
|
||||
{% endfor %}
|
||||
|
||||
</div>
|
||||
Reference in New Issue
Block a user