forked from bigscoop/online-cv
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
45 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,22 @@ | ||
{% assign skills = site.data.data.skills %} {% if skills %} | ||
<section class="skills-section section"> | ||
<h2 class="section-title"> | ||
<span class="fa-stack fa-xs"> | ||
<i class="fas fa-circle fa-stack-2x"></i> | ||
<i class="fas fa-wrench fa-stack-1x fa-inverse"></i> | ||
</span> | ||
{% assign skills = site.data.data.sidebar.skills %} | ||
{% if skills %} | ||
<div class="skills-container container-block"> | ||
|
||
<h2 class="container-block-title"><span class="fas fa-wrench"></span> | ||
{{ skills.title }} | ||
</h2> | ||
|
||
<div class="skillset"> | ||
{% for skill in skills.toolset %} | ||
<div class="item"> | ||
<h3 class="level-title">{{ skill.name }}</h3> | ||
{% assign skill_level = 'width: ' | append: skill.level %} | ||
<div class="level-bar"> | ||
<div class="level-bar-inner" style="{{skill_level}}"></div> | ||
</div> | ||
<!--//level-bar--> | ||
</div> | ||
<!--//item--> | ||
<ul class="list-unstyled skills-list"> | ||
{% for skill in skills.info %} | ||
|
||
{% if skill.link %} | ||
<li><a href="{{ skill.link }}">{{ skill.item }}</a></li> | ||
{% else %} | ||
<li>{{ skill.item }}</li> | ||
{% endif %} | ||
|
||
{% endfor %} | ||
</div> | ||
</section> | ||
<!--//skills-section--> | ||
</ul> | ||
|
||
</div><!--//skills--> | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,7 @@ | |
|
||
.skillset .level-title { | ||
float: left; | ||
width: 30%; | ||
//width: 30%; | ||
margin-bottom: 0; | ||
} | ||
|
||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,3 @@ | |
{% include oss-contributions.html %} | ||
|
||
{% include publications.html %} | ||
|
||
{% include skills.html %} | ||
|