[icons] icons for the sections + some colors for organization icons
This commit is contained in:
parent
d929eaac1a
commit
c66523c52a
10
tailwind.css
10
tailwind.css
|
@ -39,3 +39,13 @@ html {
|
||||||
.image-center {
|
.image-center {
|
||||||
@apply mx-auto;
|
@apply mx-auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h2.section-title i {
|
||||||
|
@apply mr-4;
|
||||||
|
@apply text-zinc-600;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.organization i {
|
||||||
|
@apply mr-1;
|
||||||
|
@apply text-stone-500;
|
||||||
|
}
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
{% if education %}
|
{% if education %}
|
||||||
<section class="section" id="education-section">
|
<section class="section" id="education-section">
|
||||||
<header>
|
<header>
|
||||||
<h2 class='section-title'>{% trans %}resume education title{% endtrans %} <span class="item-count">({{ education | length }})</span></h2>
|
<h2 class='section-title'><i class="fa-solid fa-graduation-cap"></i>{% trans %}resume education title{% endtrans %} <span class="item-count">({{ education | length }})</span></h2>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<section id="education">
|
<section id="education">
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
</span>
|
</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
<div class="location">
|
<div class="location organization">
|
||||||
{% if education_item.area %}
|
{% if education_item.area %}
|
||||||
<div class="area">
|
<div class="area">
|
||||||
{{ education_item.area }}
|
{{ education_item.area }}
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
{% if interests %}
|
{% if interests %}
|
||||||
<section class="section" id="interests-section">
|
<section class="section" id="interests-section">
|
||||||
<header>
|
<header>
|
||||||
<h2 class='section-title' class='section-title'>{% trans %}resume interest title{% endtrans %}</h2>
|
<h2 class='section-title' class='section-title'><i class='fa-solid fa-heart'></i>{% trans %}resume interest title{% endtrans %}</h2>
|
||||||
</header>
|
</header>
|
||||||
<section id="interests">
|
<section id="interests">
|
||||||
{% for interest in interests %}
|
{% for interest in interests %}
|
||||||
|
@ -12,6 +12,11 @@
|
||||||
{{ interest.name }}
|
{{ interest.name }}
|
||||||
</h3>
|
</h3>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% if interest.description %}
|
||||||
|
<div class="description">
|
||||||
|
{{ interest.description }}
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
{% if interest.keywords %}
|
{% if interest.keywords %}
|
||||||
<ul class="keywords">
|
<ul class="keywords">
|
||||||
{% for keyword in interest.keywords %}
|
{% for keyword in interest.keywords %}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{% set languages = page.resume.languages %}
|
{% set languages = page.resume.languages %}
|
||||||
{% if languages %}
|
{% if languages %}
|
||||||
<section class="section" id="languages-section"> <header>
|
<section class="section" id="languages-section"> <header>
|
||||||
<h2 class='section-title'>{% trans %}resume language title{% endtrans %}</h2>
|
<h2 class='section-title'><i class='fa-solid fa-flag'></i>{% trans %}resume language title{% endtrans %}</h2>
|
||||||
</header>
|
</header>
|
||||||
<section id="languages">
|
<section id="languages">
|
||||||
{% for language in languages %}
|
{% for language in languages %}
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
{% if skills %}
|
{% if skills %}
|
||||||
<section class="section" id="skills-section">
|
<section class="section" id="skills-section">
|
||||||
<header>
|
<header>
|
||||||
<h2 class='section-title'>{% trans %}resume skill title{% endtrans %}</h2>
|
<h2 class='section-title'><i class="fa-regular fa-keyboard"></i>{% trans %}resume skill title{% endtrans %}</h2>
|
||||||
</header>
|
</header>
|
||||||
<section id="skills">
|
<section id="skills">
|
||||||
{% for skill in skills %}
|
{% for skill in skills %}
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
{% if volunteer %}
|
{% if volunteer %}
|
||||||
<section class="section" id="volunteer-section">
|
<section class="section" id="volunteer-section">
|
||||||
<header>
|
<header>
|
||||||
<h2 class='section-title'>{% trans %}resume volunteer title{% endtrans %}</h2>
|
<h2 class='section-title'><i class="fa-solid fa-handshake-angle"></i>{% trans %}resume volunteer title{% endtrans %}</h2>
|
||||||
</header>
|
</header>
|
||||||
<section id="volunteer">
|
<section id="volunteer">
|
||||||
{% for volunteer_item in volunteer %}
|
{% for volunteer_item in volunteer %}
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
{% if work %}
|
{% if work %}
|
||||||
<section class="section" id="work-section">
|
<section class="section" id="work-section">
|
||||||
<header>
|
<header>
|
||||||
<h2 class='section-title'>{% trans %}resume work title{% endtrans %} <span class="item-count">({{ work | length }})</span></h2>
|
<h2 class='section-title'><i class="fa-solid fa-suitcase"></i>{% trans %}resume work title{% endtrans %} <span class="item-count">({{ work | length }})</span></h2>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<section id="work">
|
<section id="work">
|
||||||
|
@ -36,7 +36,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="company">
|
<div class="company organization">
|
||||||
<i class="fa-solid fa-building mr-2"></i>
|
<i class="fa-solid fa-building mr-2"></i>
|
||||||
{{ work_item.name }}
|
{{ work_item.name }}
|
||||||
{% if work_item.url %}
|
{% if work_item.url %}
|
||||||
|
|
Loading…
Reference in New Issue