forked from Stavrospanakakis/jekyll-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
8 changed files
with
56 additions
and
57 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,14 +1,14 @@ | ||
<head> | ||
<!-- Styles --> | ||
<link rel="stylesheet" href="{{'/assets/css/main.css' | relative_url}}"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> | ||
<!-- Styles --> | ||
<link rel="stylesheet" href="{{'/assets/css/main.css' | relative_url}}"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> | ||
|
||
<!-- Meta tags --> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width,initial-scale=1.0"> | ||
<!-- Meta tags --> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width,initial-scale=1.0"> | ||
|
||
<!-- flag icon --> | ||
<link href="https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/2.3.1/css/flag-icon.min.css" rel="stylesheet"/> | ||
<!-- flag icon --> | ||
<link href="https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/2.3.1/css/flag-icon.min.css" rel="stylesheet" /> | ||
|
||
<title>{{site.title}}</title> | ||
<title>{{site.title}}</title> | ||
</head> |
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
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,10 +1,10 @@ | ||
{% assign skills = site.data.skills %} | ||
<section class="skills"> | ||
{% for skill_cat in skills %} | ||
{% for skill_cat in skills %} | ||
{% assign title = skill_cat.title[site.lang]%} | ||
<div class="title">{{title}}</div> | ||
{% for skill in skill_cat.list %} | ||
<div class="skill">{{skill}}</div> | ||
{% endfor %} | ||
<div class="title">{{title}}</div> | ||
{% for skill in skill_cat.list %} | ||
<div class="skill">{{skill}}</div> | ||
{% endfor %} | ||
{% endfor %} | ||
</section> |
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,10 +1,8 @@ | ||
{% assign data = site.data.data %} | ||
{% assign lang = site.translations[site.lang].lang %} | ||
<!DOCTYPE html> | ||
<html lang={{lang}}> | ||
{% include head.html %} | ||
{% include head.html %} | ||
<body> | ||
{{content}} | ||
{{content}} | ||
</body> | ||
{% include scripts.html %} | ||
</html> |