forked from sharu725/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.
added publications and education in main; more config
added config option to remove about section in sidebar added config option to not show education in main (as it is shown in the sidebar anyway) increased with of sidebar for longer names reduced padding for footer
- Loading branch information
Showing
14 changed files
with
260 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
- intro: | ||
description: "You can list your publications in this section. Lorem ipsum dolor | ||
sit amet, consectetur adipiscing elit. Vestibulum et ligula in nunc bibendum fringilla a eu lectus." | ||
|
||
- paper: | ||
title: The Art of Computer Programming | ||
authors: Donald E. Knuth | ||
conference: Addison-Wesley, 1968 | ||
- paper: | ||
title: "Genetic Programming III: Darwinian Invention & Problem Solving" | ||
authors: Koza, J.R., Andre, D., Bennett, F.H., Keane, M.A. | ||
conference: "Morgan Kaufmann Publishers Inc., San Francisco, CA, USA, 1st edn. (1999)" | ||
- paper: | ||
title: A syntax directed compiler for Algol 60 | ||
authors: Edgar T. Irons | ||
conference: "Comm. ACM 4 (1961), 51–55" |
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,29 @@ | ||
{% if site.data.educations %} | ||
<section class="section educations-section"> | ||
<h2 class="section-title"><i class="fa fa-graduation-cap"></i>Education</h2> | ||
|
||
{% for education in site.data.educations %} | ||
<div class="item"> | ||
|
||
<div class="meta"> | ||
|
||
<div class="upper-row"> | ||
<h3 class="degree">{{ education.degree }}</h3> | ||
<div class="time">{{ education.time }}</div> | ||
</div><!--//upper-row--> | ||
|
||
<div class="university">{{ education.university }}</div> | ||
|
||
</div><!--//meta--> | ||
|
||
{% if education.details %} | ||
<div class="details"> | ||
<p>{{ education.details }}</p> | ||
</div><!--//details--> | ||
{% endif %} | ||
|
||
</div><!--//item--> | ||
{% endfor %} | ||
|
||
</section><!--//section--> | ||
{% 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{% if site.data.publications %} | ||
<section class="section publications-section"> | ||
|
||
<h2 class="section-title"><i class="fa fa-file-text"></i>Publications</h2> | ||
|
||
{% for intro in site.data.publications %} | ||
<div class="intro"> | ||
<p>{{ intro.description }}</p> | ||
</div><!--//intro--> | ||
{% endfor%} | ||
|
||
{% for publication in site.data.publications %} | ||
<div class="item"> | ||
<div class="publication-title">{{ publication.title }}</div> | ||
<div class="publication-authors">{{ publication.authors }}</div> | ||
<div class="publication-conference">{{ publication.conference }}</div> | ||
</div><!--//item--> | ||
{% endfor %} | ||
|
||
</section><!--//section--> | ||
{% 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
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
Oops, something went wrong.