Skip to content

Commit f8e744c

Browse files
authored
Clean up skills lists; clean up profiles (#375)
* Clean up skills lists; clean up profiles * Fixups
1 parent 713b51a commit f8e744c

File tree

7 files changed

+11
-10
lines changed

7 files changed

+11
-10
lines changed

src/_includes/bio.njk

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,15 +82,16 @@
8282
</div>
8383
</div>
8484

85+
{% if languages is defined and languages is not null %}
8586
<div class="user-card p-8 rounded-3xl">
8687
<h2 class="text-xs font-black uppercase tracking-[0.3em] text-[var(--text-muted)] mb-6">Technologies</h2>
8788
<div class="flex flex-wrap gap-3">
88-
{% set skills = languages.split(' ') %}
89-
{% include "skills-list.njk" %}
89+
{% set skills = languages.split(' ') %}
90+
{% include "skills-list.njk" %}
9091
</div>
9192
</div>
93+
{% endif %}
9294
</div>
93-
9495
</div>
9596
</main>
9697

src/index.njk

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,12 @@ layout: false
3434
{% endif %}
3535
</div>
3636

37+
{% if person.data.languages is defined and person.data.languages is not null %}
3738
<div class="mt-6 flex flex-wrap gap-2">
3839
{% set skills = person.data.languages.split(' ') %}
3940
{% include "skills-list.njk" %}
4041
</div>
42+
{% endif %}
4143

4244
{% set bio = person.data.bio %}
4345
{% if bio %}

src/users/Leo-Chan01.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ email: ephraimleo16@gmail.com
88
# facebook: Ephraim leo
99
country: Nigeria
1010
location: Ebonyi
11-
languages: N/A
11+
languages:
1212
role: Mobile Developer
1313
bio: |
1414
I have good experience in building mobile apps with authentication integration using firebase, payment methods, NFC and optimizations.

src/users/anderson-garcia.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ email: aegiptogt@gmail.com
55
country: Venezuela
66
location: Valencia
77
role: Translator, psychologist, text editor.
8-
languages: N/A
8+
languages:
99
bio: |
1010
English Spanish Translator / Psychologist / Academic writer

src/users/ierfaaan.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ facebook:
99
country: Iran
1010
location: Tehran
1111
role: Web Developer
12-
languages: javaScript PHP HTML CSS React mySql Python C
12+
languages: javaScript PHP HTML CSS React mySql Python C
1313
bio: Hi my name is erfan

src/users/majalian.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ twitter: https://mobile.twitter.com/majalian
77
linkedin: https://www.linkedin.com/in/mujahidjbour/
88
country: Jordan
99
location: Amman
10-
languages: N/A
10+
languages:
1111
role: Copywriter
1212
bio: |
1313

src/users/rtewari056.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ location: West Bengal
1111
role: Full-Stack Developer
1212
languages: C C++ HTML CSS JavaScript Python
1313
bio: |
14-
15-
<br>
16-
### <img src="https://raw.githubusercontent.com/TheDudeThatCode/TheDudeThatCode/master/Assets/Developer.gif" width="45px" alt="Developer.gif"> About Me:
14+
About Me:
1715
1816
- 💻 I use daily `.js`, `.html`, `.css`, `.cpp`, `.py`
1917

0 commit comments

Comments
 (0)