Skip to content

Commit

Permalink
Added icons in CV
Browse files Browse the repository at this point in the history
  • Loading branch information
jwillmer committed Jun 5, 2017
1 parent 0603e05 commit f5f5e85
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 7 deletions.
8 changes: 4 additions & 4 deletions _data/authors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ default: # Fallback if noth
behance: # OPTIONAL: used in the about page
spotify: # OPTIONAL: used in the about page
twitch: # OPTIONAL: used in the about page
500px: # OPTIONAL: used in the about page
s500px: # OPTIONAL: used in the about page
reddit: # OPTIONAL: used in the about page
johndoe:
initial: johndoe
Expand All @@ -30,9 +30,9 @@ johndoe:
picture: /assets/johndoe.jpg
bio: This is my bio!
location: Germany
email: -
twitter: -
twitch: -
email: "-"
twitter: "-"
twitch: "-"
jwillmer:
initial: jwillmer
name: "Jens Willmer"
Expand Down
2 changes: 1 addition & 1 deletion _layouts/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ <h1 class="author-title" itemprop="name">{{author.name}}</h1>
{% if author.pinterest %}<a href="https://www.pinterest.com/{{ author.pinterest }}" itemprop="sameAs" class="icon-pinterest">Pinterest</a> {% endif %}
{% if author.dribble %}<a href="https://dribbble.com/{{ author.dribble }}" itemprop="sameAs" class="icon-dribbble">Dribble</a> {% endif %}
{% if author.behance %}<a href="https://www.behance.net/{{ author.behance }}" itemprop="sameAs" class="icon-behance">Behance</a> {% endif %}
{% if author.500px %}<a href="https://500px.com/{{ author.500px }}" itemprop="sameAs" class="icon-500px">500px</a> {% endif %}
{% if author.s500px %}<a href="https://500px.com/{{ author.s500px }}" itemprop="sameAs" class="icon-500px">500px</a> {% endif %}
{% if author.reddit %}<a href="https://de.reddit.com/user/{{ author.reddit }}" itemprop="sameAs" class="icon-reddit">Reddit</a> {% endif %}
</div>
</div>
Expand Down
5 changes: 3 additions & 2 deletions _pages/cv.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</div>

<div class="md-card shadow">
<div class="title icon-stats">
<div class="title icon-stats-bars">
<h2>Skills</h2>
</div>
<ul>
Expand All @@ -26,7 +26,7 @@ <h2>Skills</h2>
</div>

<div class="md-card shadow education">
<div class="title icon-stats">
<div class="title icon-library">
<h2>Education</h2>
</div>
{% for entry in cv.education %}
Expand Down Expand Up @@ -84,6 +84,7 @@ <h2>{{project.title}}</h2>
<li>{{technology}}</li>
{% endfor %}
</ul>
<span class="icon-briefcase"></span>
</div>
</div>
{% endfor %}
9 changes: 9 additions & 0 deletions _sass/cv.scss
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
.title {
display: flex;
align-items: baseline;
font-size: 2rem;

h2 {
padding-left: 10px;
Expand Down Expand Up @@ -150,6 +151,10 @@
}

.footer {
display: flex;
justify-content: space-between;
align-items: center;

ul {
display: flex;
padding: 0;
Expand All @@ -160,6 +165,10 @@
list-style-type: none;
font-weight: 600;
}

span {
font-size: 2rem;
}
}
}

Expand Down

0 comments on commit f5f5e85

Please sign in to comment.