forked from yousinix/portfolYOU
-
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.
* Move Skills and Timeline to includes. * Change extension to markdown file.
- Loading branch information
Showing
5 changed files
with
61 additions
and
50 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ permalink: articles/:title | |
# Author Info | ||
author: | ||
img: https://ssl.gstatic.com/images/branding/product/1x/avatar_square_blue_512dp.png | ||
name: John Doe | ||
email: [email protected] | ||
github: portfolYOU | ||
twitter: portfolYOU | ||
|
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<!-- Programming Skills --> | ||
<div class="row"> | ||
<div class="col-lg-6"> | ||
<h2 class="mb-3">Programming Skills</h2> | ||
{% for skill in page.programming-skills %} | ||
<div class="skill"> | ||
<p>{{ skill.name }}</p> | ||
<div class="skill-bar skill-bar-{{ skill.color }} skill-{{ skill.percentage }} wow animated slideInLeft" | ||
data-wow-delay="{{ forloop.index | divided_by: 20.0 }}"> | ||
<span>{{ skill.percentage }}%</span> | ||
</div> | ||
</div> | ||
{% endfor %} | ||
</div> | ||
<!-- Other Skills --> | ||
<div class="col-lg-6"> | ||
<h2 class="mb-3">Other Skills</h2> | ||
{% for skill in page.other-skills %} | ||
<div class="skill"> | ||
<p>{{ skill.name }}</p> | ||
<div class="skill-bar skill-bar-{{ skill.color }} skill-{{ skill.percentage }} wow animated slideInLeft" | ||
data-wow-delay="{{ forloop.index | divided_by: 20.0 }}"> | ||
<span>{{ skill.percentage }}%</span> | ||
</div> | ||
</div> | ||
{% endfor %} | ||
</div> | ||
</div> |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<div class="row"> | ||
<div class="col mt-3"> | ||
<div class="timeline-body"> | ||
{% for item in page.timeline %} | ||
<div class="timeline-item"> | ||
<div class="content"> | ||
<h2>{{ item.title }}</h2> | ||
<h6 class="date">{{ item.from }} — {{ item.to }}</h6> | ||
<p>{{ item.description }}</p> | ||
</div> | ||
</div> | ||
{% endfor %} | ||
</div> | ||
</div> | ||
</div> |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
layout: default | ||
--- | ||
|
||
<div class="col-lg-10 mx-auto mt-5 article"> | ||
|
||
<h1><b>{{ page.title }}</b></h1> | ||
|
||
{{ content }} | ||
|
||
</div> |
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