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
This commit is contained in:
parent
13925d16f2
commit
1cee9a16d5
@ -2,6 +2,7 @@
|
|||||||
title: My Resume
|
title: My Resume
|
||||||
url: 'http://webjeda.com'
|
url: 'http://webjeda.com'
|
||||||
baseurl: '/online-cv' #change it according to your repository name
|
baseurl: '/online-cv' #change it according to your repository name
|
||||||
|
about: true # set to false or comment line if you want to remove the "How to use?" in the sidebar
|
||||||
|
|
||||||
# Enable one of these styles by removing #. Style will be applied only after restarting the build or serve.
|
# Enable one of these styles by removing #. Style will be applied only after restarting the build or serve.
|
||||||
#style: styles-2
|
#style: styles-2
|
||||||
@ -28,6 +29,8 @@ github: sharu725
|
|||||||
twitter: '@webjeda'
|
twitter: '@webjeda'
|
||||||
#Update all the sections by editing the files inside _data folder.
|
#Update all the sections by editing the files inside _data folder.
|
||||||
|
|
||||||
|
education_in_main: true # set to false or comment line if you do not want an education section in main
|
||||||
|
|
||||||
# Tracker
|
# Tracker
|
||||||
analytics: UA-83979019-1
|
analytics: UA-83979019-1
|
||||||
|
|
||||||
|
@ -2,7 +2,15 @@
|
|||||||
degree: MSc in Computer Science
|
degree: MSc in Computer Science
|
||||||
university: University of London
|
university: University of London
|
||||||
time: 2011 - 2012
|
time: 2011 - 2012
|
||||||
|
details: "Describe your study here lorem ipsum dolor sit amet, consectetuer adipiscing
|
||||||
|
elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et
|
||||||
|
magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec,
|
||||||
|
pellentesque eu, pretium quis, sem."
|
||||||
- education:
|
- education:
|
||||||
degree: BSc in Applied Mathematics
|
degree: BSc in Applied Mathematics
|
||||||
university: Bristol University
|
university: Bristol University
|
||||||
time: 2007 - 2011
|
time: 2007 - 2011
|
||||||
|
details: "Describe your study here lorem ipsum dolor sit amet, consectetuer adipiscing
|
||||||
|
elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et
|
||||||
|
magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec,
|
||||||
|
pellentesque eu, pretium quis, sem."
|
||||||
|
16
_data/publications.yml
Normal file
16
_data/publications.yml
Normal file
@ -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"
|
29
_includes/education-section.html
Normal file
29
_includes/education-section.html
Normal file
@ -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 %}
|
21
_includes/publications.html
Normal file
21
_includes/publications.html
Normal file
@ -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 %}
|
@ -48,6 +48,8 @@
|
|||||||
{% include education.html %}
|
{% include education.html %}
|
||||||
{% include language.html %}
|
{% include language.html %}
|
||||||
{% include interests.html %}
|
{% include interests.html %}
|
||||||
{% include about.html %}
|
{% if site.about %}
|
||||||
|
{% include about.html %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
</div><!--//sidebar-wrapper-->
|
</div><!--//sidebar-wrapper-->
|
||||||
|
@ -43,7 +43,7 @@ p {
|
|||||||
}
|
}
|
||||||
.wrapper {
|
.wrapper {
|
||||||
background: #4CAC9D;
|
background: #4CAC9D;
|
||||||
max-width: 960px;
|
max-width: 1000px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
position: relative;
|
position: relative;
|
||||||
-webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
-webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
||||||
@ -54,7 +54,7 @@ p {
|
|||||||
background: #4CAC9D;
|
background: #4CAC9D;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 0;
|
right: 0;
|
||||||
width: 240px;
|
width: 280px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
min-height: 800px;
|
min-height: 800px;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
@ -161,7 +161,7 @@ p {
|
|||||||
.main-wrapper {
|
.main-wrapper {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
padding: 60px;
|
padding: 60px;
|
||||||
padding-right: 300px;
|
padding-right: 340px;
|
||||||
}
|
}
|
||||||
.main-wrapper .section-title {
|
.main-wrapper .section-title {
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
@ -196,7 +196,8 @@ p {
|
|||||||
.main-wrapper .section {
|
.main-wrapper .section {
|
||||||
margin-bottom: 60px;
|
margin-bottom: 60px;
|
||||||
}
|
}
|
||||||
.main-wrapper .experiences-section .item {
|
.main-wrapper .experiences-section .item,
|
||||||
|
.main-wrapper .educations-section .item {
|
||||||
margin-bottom: 30px;
|
margin-bottom: 30px;
|
||||||
}
|
}
|
||||||
.main-wrapper .upper-row {
|
.main-wrapper .upper-row {
|
||||||
@ -204,7 +205,8 @@ p {
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
margin-bottom: 2px;
|
margin-bottom: 2px;
|
||||||
}
|
}
|
||||||
.main-wrapper .job-title {
|
.main-wrapper .job-title,
|
||||||
|
.main-wrapper .degree {
|
||||||
color: #3F4650;
|
color: #3F4650;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
@ -217,7 +219,8 @@ p {
|
|||||||
top: 0;
|
top: 0;
|
||||||
color: #97AAC3;
|
color: #97AAC3;
|
||||||
}
|
}
|
||||||
.main-wrapper .company {
|
.main-wrapper .company,
|
||||||
|
.main-wrapper .university {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
color: #97AAC3;
|
color: #97AAC3;
|
||||||
}
|
}
|
||||||
@ -233,6 +236,21 @@ p {
|
|||||||
.main-wrapper .projects-section .item {
|
.main-wrapper .projects-section .item {
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
}
|
}
|
||||||
|
.main-wrapper .publication-title {
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: 500;
|
||||||
|
margin-bottom: 1px;
|
||||||
|
}
|
||||||
|
.main-wrapper .publication-authors {
|
||||||
|
font-style: italic;
|
||||||
|
margin-bottom: 1px;
|
||||||
|
}
|
||||||
|
.main-wrapper .publications-section .intro {
|
||||||
|
margin-bottom: 30px;
|
||||||
|
}
|
||||||
|
.main-wrapper .publications-section .item {
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
.skillset .item {
|
.skillset .item {
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
@ -251,8 +269,7 @@ p {
|
|||||||
background: #7ec6bb;
|
background: #7ec6bb;
|
||||||
}
|
}
|
||||||
.footer {
|
.footer {
|
||||||
padding: 30px;
|
padding-top: 30px;
|
||||||
padding-top: 60px;
|
|
||||||
}
|
}
|
||||||
.footer .copyright {
|
.footer .copyright {
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
|
@ -43,7 +43,7 @@ p {
|
|||||||
}
|
}
|
||||||
.wrapper {
|
.wrapper {
|
||||||
background: #5BB66F;
|
background: #5BB66F;
|
||||||
max-width: 960px;
|
max-width: 1000px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
position: relative;
|
position: relative;
|
||||||
-webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
-webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
||||||
@ -54,7 +54,7 @@ p {
|
|||||||
background: #5BB66F;
|
background: #5BB66F;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 0;
|
right: 0;
|
||||||
width: 240px;
|
width: 280px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
min-height: 800px;
|
min-height: 800px;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
@ -161,7 +161,7 @@ p {
|
|||||||
.main-wrapper {
|
.main-wrapper {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
padding: 60px;
|
padding: 60px;
|
||||||
padding-right: 300px;
|
padding-right: 340px;
|
||||||
}
|
}
|
||||||
.main-wrapper .section-title {
|
.main-wrapper .section-title {
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
@ -196,7 +196,8 @@ p {
|
|||||||
.main-wrapper .section {
|
.main-wrapper .section {
|
||||||
margin-bottom: 60px;
|
margin-bottom: 60px;
|
||||||
}
|
}
|
||||||
.main-wrapper .experiences-section .item {
|
.main-wrapper .experiences-section .item,
|
||||||
|
.main-wrapper .educations-section .item {
|
||||||
margin-bottom: 30px;
|
margin-bottom: 30px;
|
||||||
}
|
}
|
||||||
.main-wrapper .upper-row {
|
.main-wrapper .upper-row {
|
||||||
@ -204,7 +205,8 @@ p {
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
margin-bottom: 2px;
|
margin-bottom: 2px;
|
||||||
}
|
}
|
||||||
.main-wrapper .job-title {
|
.main-wrapper .job-title,
|
||||||
|
.main-wrapper .degree {
|
||||||
color: #3F4650;
|
color: #3F4650;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
@ -217,7 +219,8 @@ p {
|
|||||||
top: 0;
|
top: 0;
|
||||||
color: #97AAC3;
|
color: #97AAC3;
|
||||||
}
|
}
|
||||||
.main-wrapper .company {
|
.main-wrapper .company,
|
||||||
|
.main-wrapper .university {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
color: #97AAC3;
|
color: #97AAC3;
|
||||||
}
|
}
|
||||||
@ -233,6 +236,21 @@ p {
|
|||||||
.main-wrapper .projects-section .item {
|
.main-wrapper .projects-section .item {
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
}
|
}
|
||||||
|
.main-wrapper .publication-title {
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: 500;
|
||||||
|
margin-bottom: 1px;
|
||||||
|
}
|
||||||
|
.main-wrapper .publication-authors {
|
||||||
|
font-style: italic;
|
||||||
|
margin-bottom: 1px;
|
||||||
|
}
|
||||||
|
.main-wrapper .publications-section .intro {
|
||||||
|
margin-bottom: 30px;
|
||||||
|
}
|
||||||
|
.main-wrapper .publications-section .item {
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
.skillset .item {
|
.skillset .item {
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
@ -251,8 +269,7 @@ p {
|
|||||||
background: #90ce9d;
|
background: #90ce9d;
|
||||||
}
|
}
|
||||||
.footer {
|
.footer {
|
||||||
padding: 30px;
|
padding-top: 30px;
|
||||||
padding-top: 60px;
|
|
||||||
}
|
}
|
||||||
.footer .copyright {
|
.footer .copyright {
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
|
@ -43,7 +43,7 @@ p {
|
|||||||
}
|
}
|
||||||
.wrapper {
|
.wrapper {
|
||||||
background: #A15277;
|
background: #A15277;
|
||||||
max-width: 960px;
|
max-width: 1000px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
position: relative;
|
position: relative;
|
||||||
-webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
-webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
||||||
@ -54,7 +54,7 @@ p {
|
|||||||
background: #A15277;
|
background: #A15277;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 0;
|
right: 0;
|
||||||
width: 240px;
|
width: 280px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
min-height: 800px;
|
min-height: 800px;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
@ -161,7 +161,7 @@ p {
|
|||||||
.main-wrapper {
|
.main-wrapper {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
padding: 60px;
|
padding: 60px;
|
||||||
padding-right: 300px;
|
padding-right: 340px;
|
||||||
}
|
}
|
||||||
.main-wrapper .section-title {
|
.main-wrapper .section-title {
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
@ -196,7 +196,8 @@ p {
|
|||||||
.main-wrapper .section {
|
.main-wrapper .section {
|
||||||
margin-bottom: 60px;
|
margin-bottom: 60px;
|
||||||
}
|
}
|
||||||
.main-wrapper .experiences-section .item {
|
.main-wrapper .experiences-section .item,
|
||||||
|
.main-wrapper .educations-section .item {
|
||||||
margin-bottom: 30px;
|
margin-bottom: 30px;
|
||||||
}
|
}
|
||||||
.main-wrapper .upper-row {
|
.main-wrapper .upper-row {
|
||||||
@ -204,7 +205,8 @@ p {
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
margin-bottom: 2px;
|
margin-bottom: 2px;
|
||||||
}
|
}
|
||||||
.main-wrapper .job-title {
|
.main-wrapper .job-title,
|
||||||
|
.main-wrapper .degree {
|
||||||
color: #3F4650;
|
color: #3F4650;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
@ -217,7 +219,8 @@ p {
|
|||||||
top: 0;
|
top: 0;
|
||||||
color: #97AAC3;
|
color: #97AAC3;
|
||||||
}
|
}
|
||||||
.main-wrapper .company {
|
.main-wrapper .company,
|
||||||
|
.main-wrapper .university {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
color: #97AAC3;
|
color: #97AAC3;
|
||||||
}
|
}
|
||||||
@ -233,6 +236,21 @@ p {
|
|||||||
.main-wrapper .projects-section .item {
|
.main-wrapper .projects-section .item {
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
}
|
}
|
||||||
|
.main-wrapper .publication-title {
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: 500;
|
||||||
|
margin-bottom: 1px;
|
||||||
|
}
|
||||||
|
.main-wrapper .publication-authors {
|
||||||
|
font-style: italic;
|
||||||
|
margin-bottom: 1px;
|
||||||
|
}
|
||||||
|
.main-wrapper .publications-section .intro {
|
||||||
|
margin-bottom: 30px;
|
||||||
|
}
|
||||||
|
.main-wrapper .publications-section .item {
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
.skillset .item {
|
.skillset .item {
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
@ -251,8 +269,7 @@ p {
|
|||||||
background: #bf819e;
|
background: #bf819e;
|
||||||
}
|
}
|
||||||
.footer {
|
.footer {
|
||||||
padding: 30px;
|
padding-top: 30px;
|
||||||
padding-top: 60px;
|
|
||||||
}
|
}
|
||||||
.footer .copyright {
|
.footer .copyright {
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
|
@ -43,7 +43,7 @@ p {
|
|||||||
}
|
}
|
||||||
.wrapper {
|
.wrapper {
|
||||||
background: #FDA246;
|
background: #FDA246;
|
||||||
max-width: 960px;
|
max-width: 1000px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
position: relative;
|
position: relative;
|
||||||
-webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
-webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
||||||
@ -54,7 +54,7 @@ p {
|
|||||||
background: #FDA246;
|
background: #FDA246;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 0;
|
right: 0;
|
||||||
width: 240px;
|
width: 280px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
min-height: 800px;
|
min-height: 800px;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
@ -161,7 +161,7 @@ p {
|
|||||||
.main-wrapper {
|
.main-wrapper {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
padding: 60px;
|
padding: 60px;
|
||||||
padding-right: 300px;
|
padding-right: 340px;
|
||||||
}
|
}
|
||||||
.main-wrapper .section-title {
|
.main-wrapper .section-title {
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
@ -196,7 +196,8 @@ p {
|
|||||||
.main-wrapper .section {
|
.main-wrapper .section {
|
||||||
margin-bottom: 60px;
|
margin-bottom: 60px;
|
||||||
}
|
}
|
||||||
.main-wrapper .experiences-section .item {
|
.main-wrapper .experiences-section .item,
|
||||||
|
.main-wrapper .educations-section .item {
|
||||||
margin-bottom: 30px;
|
margin-bottom: 30px;
|
||||||
}
|
}
|
||||||
.main-wrapper .upper-row {
|
.main-wrapper .upper-row {
|
||||||
@ -204,7 +205,8 @@ p {
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
margin-bottom: 2px;
|
margin-bottom: 2px;
|
||||||
}
|
}
|
||||||
.main-wrapper .job-title {
|
.main-wrapper .job-title,
|
||||||
|
.main-wrapper .degree {
|
||||||
color: #3F4650;
|
color: #3F4650;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
@ -217,7 +219,8 @@ p {
|
|||||||
top: 0;
|
top: 0;
|
||||||
color: #97AAC3;
|
color: #97AAC3;
|
||||||
}
|
}
|
||||||
.main-wrapper .company {
|
.main-wrapper .company,
|
||||||
|
.main-wrapper .university {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
color: #97AAC3;
|
color: #97AAC3;
|
||||||
}
|
}
|
||||||
@ -233,6 +236,21 @@ p {
|
|||||||
.main-wrapper .projects-section .item {
|
.main-wrapper .projects-section .item {
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
}
|
}
|
||||||
|
.main-wrapper .publication-title {
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: 500;
|
||||||
|
margin-bottom: 1px;
|
||||||
|
}
|
||||||
|
.main-wrapper .publication-authors {
|
||||||
|
font-style: italic;
|
||||||
|
margin-bottom: 1px;
|
||||||
|
}
|
||||||
|
.main-wrapper .publications-section .intro {
|
||||||
|
margin-bottom: 30px;
|
||||||
|
}
|
||||||
|
.main-wrapper .publications-section .item {
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
.skillset .item {
|
.skillset .item {
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
@ -251,8 +269,7 @@ p {
|
|||||||
background: #fec892;
|
background: #fec892;
|
||||||
}
|
}
|
||||||
.footer {
|
.footer {
|
||||||
padding: 30px;
|
padding-top: 30px;
|
||||||
padding-top: 60px;
|
|
||||||
}
|
}
|
||||||
.footer .copyright {
|
.footer .copyright {
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
|
@ -43,7 +43,7 @@ p {
|
|||||||
}
|
}
|
||||||
.wrapper {
|
.wrapper {
|
||||||
background: #4B6A78;
|
background: #4B6A78;
|
||||||
max-width: 960px;
|
max-width: 1000px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
position: relative;
|
position: relative;
|
||||||
-webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
-webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
||||||
@ -54,7 +54,7 @@ p {
|
|||||||
background: #4B6A78;
|
background: #4B6A78;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 0;
|
right: 0;
|
||||||
width: 240px;
|
width: 280px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
min-height: 800px;
|
min-height: 800px;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
@ -161,7 +161,7 @@ p {
|
|||||||
.main-wrapper {
|
.main-wrapper {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
padding: 60px;
|
padding: 60px;
|
||||||
padding-right: 300px;
|
padding-right: 340px;
|
||||||
}
|
}
|
||||||
.main-wrapper .section-title {
|
.main-wrapper .section-title {
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
@ -196,7 +196,8 @@ p {
|
|||||||
.main-wrapper .section {
|
.main-wrapper .section {
|
||||||
margin-bottom: 60px;
|
margin-bottom: 60px;
|
||||||
}
|
}
|
||||||
.main-wrapper .experiences-section .item {
|
.main-wrapper .experiences-section .item,
|
||||||
|
.main-wrapper .educations-section .item {
|
||||||
margin-bottom: 30px;
|
margin-bottom: 30px;
|
||||||
}
|
}
|
||||||
.main-wrapper .upper-row {
|
.main-wrapper .upper-row {
|
||||||
@ -204,7 +205,8 @@ p {
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
margin-bottom: 2px;
|
margin-bottom: 2px;
|
||||||
}
|
}
|
||||||
.main-wrapper .job-title {
|
.main-wrapper .job-title,
|
||||||
|
.main-wrapper .degree {
|
||||||
color: #3F4650;
|
color: #3F4650;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
@ -217,7 +219,8 @@ p {
|
|||||||
top: 0;
|
top: 0;
|
||||||
color: #97AAC3;
|
color: #97AAC3;
|
||||||
}
|
}
|
||||||
.main-wrapper .company {
|
.main-wrapper .company,
|
||||||
|
.main-wrapper .university {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
color: #97AAC3;
|
color: #97AAC3;
|
||||||
}
|
}
|
||||||
@ -233,6 +236,21 @@ p {
|
|||||||
.main-wrapper .projects-section .item {
|
.main-wrapper .projects-section .item {
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
}
|
}
|
||||||
|
.main-wrapper .publication-title {
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: 500;
|
||||||
|
margin-bottom: 1px;
|
||||||
|
}
|
||||||
|
.main-wrapper .publication-authors {
|
||||||
|
font-style: italic;
|
||||||
|
margin-bottom: 1px;
|
||||||
|
}
|
||||||
|
.main-wrapper .publications-section .intro {
|
||||||
|
margin-bottom: 30px;
|
||||||
|
}
|
||||||
|
.main-wrapper .publications-section .item {
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
.skillset .item {
|
.skillset .item {
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
@ -251,8 +269,7 @@ p {
|
|||||||
background: #6c92a3;
|
background: #6c92a3;
|
||||||
}
|
}
|
||||||
.footer {
|
.footer {
|
||||||
padding: 30px;
|
padding-top: 30px;
|
||||||
padding-top: 60px;
|
|
||||||
}
|
}
|
||||||
.footer .copyright {
|
.footer .copyright {
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
|
@ -43,7 +43,7 @@ p {
|
|||||||
}
|
}
|
||||||
.wrapper {
|
.wrapper {
|
||||||
background: #42A8C0;
|
background: #42A8C0;
|
||||||
max-width: 960px;
|
max-width: 1000px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
position: relative;
|
position: relative;
|
||||||
-webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
-webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
||||||
@ -54,7 +54,7 @@ p {
|
|||||||
background: #42A8C0;
|
background: #42A8C0;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 0;
|
right: 0;
|
||||||
width: 240px;
|
width: 280px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
min-height: 800px;
|
min-height: 800px;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
@ -161,7 +161,7 @@ p {
|
|||||||
.main-wrapper {
|
.main-wrapper {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
padding: 60px;
|
padding: 60px;
|
||||||
padding-right: 300px;
|
padding-right: 340px;
|
||||||
}
|
}
|
||||||
.main-wrapper .section-title {
|
.main-wrapper .section-title {
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
@ -196,7 +196,8 @@ p {
|
|||||||
.main-wrapper .section {
|
.main-wrapper .section {
|
||||||
margin-bottom: 60px;
|
margin-bottom: 60px;
|
||||||
}
|
}
|
||||||
.main-wrapper .experiences-section .item {
|
.main-wrapper .experiences-section .item,
|
||||||
|
.main-wrapper .educations-section .item {
|
||||||
margin-bottom: 30px;
|
margin-bottom: 30px;
|
||||||
}
|
}
|
||||||
.main-wrapper .upper-row {
|
.main-wrapper .upper-row {
|
||||||
@ -204,7 +205,8 @@ p {
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
margin-bottom: 2px;
|
margin-bottom: 2px;
|
||||||
}
|
}
|
||||||
.main-wrapper .job-title {
|
.main-wrapper .job-title,
|
||||||
|
.main-wrapper .degree {
|
||||||
color: #3F4650;
|
color: #3F4650;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
@ -217,7 +219,8 @@ p {
|
|||||||
top: 0;
|
top: 0;
|
||||||
color: #97AAC3;
|
color: #97AAC3;
|
||||||
}
|
}
|
||||||
.main-wrapper .company {
|
.main-wrapper .company,
|
||||||
|
.main-wrapper .university {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
color: #97AAC3;
|
color: #97AAC3;
|
||||||
}
|
}
|
||||||
@ -233,6 +236,21 @@ p {
|
|||||||
.main-wrapper .projects-section .item {
|
.main-wrapper .projects-section .item {
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
}
|
}
|
||||||
|
.main-wrapper .publication-title {
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: 500;
|
||||||
|
margin-bottom: 1px;
|
||||||
|
}
|
||||||
|
.main-wrapper .publication-authors {
|
||||||
|
font-style: italic;
|
||||||
|
margin-bottom: 1px;
|
||||||
|
}
|
||||||
|
.main-wrapper .publications-section .intro {
|
||||||
|
margin-bottom: 30px;
|
||||||
|
}
|
||||||
|
.main-wrapper .publications-section .item {
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
.skillset .item {
|
.skillset .item {
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
@ -251,8 +269,7 @@ p {
|
|||||||
background: #7bc2d3;
|
background: #7bc2d3;
|
||||||
}
|
}
|
||||||
.footer {
|
.footer {
|
||||||
padding: 30px;
|
padding-top: 30px;
|
||||||
padding-top: 60px;
|
|
||||||
}
|
}
|
||||||
.footer .copyright {
|
.footer .copyright {
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
|
@ -31,7 +31,7 @@ p {
|
|||||||
|
|
||||||
.wrapper {
|
.wrapper {
|
||||||
background:@theme-color;
|
background:@theme-color;
|
||||||
max-width: 960px;
|
max-width: 1000px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
position: relative;
|
position: relative;
|
||||||
.box-shadow(0px 2px 4px rgba(0,0,0,0.1));
|
.box-shadow(0px 2px 4px rgba(0,0,0,0.1));
|
||||||
@ -41,7 +41,7 @@ p {
|
|||||||
background: @theme-color;
|
background: @theme-color;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 0;
|
right: 0;
|
||||||
width: 240px;
|
width: 280px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
min-height: 800px;
|
min-height: 800px;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
@ -162,7 +162,7 @@ p {
|
|||||||
.main-wrapper {
|
.main-wrapper {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
padding: 60px;
|
padding: 60px;
|
||||||
padding-right: 300px;
|
padding-right: 340px;
|
||||||
.section-title {
|
.section-title {
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
@ -191,7 +191,7 @@ p {
|
|||||||
margin-bottom: 60px;
|
margin-bottom: 60px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.experiences-section {
|
.experiences-section, .educations-section {
|
||||||
.item {
|
.item {
|
||||||
margin-bottom: 30px;
|
margin-bottom: 30px;
|
||||||
}
|
}
|
||||||
@ -201,7 +201,7 @@ p {
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
margin-bottom: 2px;
|
margin-bottom: 2px;
|
||||||
}
|
}
|
||||||
.job-title {
|
.job-title, .degree {
|
||||||
color: @text-color;
|
color: @text-color;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
@ -214,7 +214,7 @@ p {
|
|||||||
top: 0;
|
top: 0;
|
||||||
color: @text-grey;
|
color: @text-grey;
|
||||||
}
|
}
|
||||||
.company {
|
.company, .university {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
color: @text-grey;
|
color: @text-grey;
|
||||||
}
|
}
|
||||||
@ -234,6 +234,23 @@ p {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.publication-title {
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: 500;
|
||||||
|
margin-bottom: 1px;
|
||||||
|
}
|
||||||
|
.publication-authors {
|
||||||
|
font-style: italic;
|
||||||
|
margin-bottom: 1px;
|
||||||
|
}
|
||||||
|
.publications-section {
|
||||||
|
.intro {
|
||||||
|
margin-bottom: 30px;
|
||||||
|
}
|
||||||
|
.item {
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -261,8 +278,7 @@ p {
|
|||||||
|
|
||||||
|
|
||||||
.footer {
|
.footer {
|
||||||
padding: 30px;
|
padding-top: 30px;
|
||||||
padding-top: 60px;
|
|
||||||
.copyright {
|
.copyright {
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
color: @text-color-secondary;
|
color: @text-color-secondary;
|
||||||
|
@ -5,10 +5,16 @@ layout: default
|
|||||||
|
|
||||||
{% include career-profile.html %}
|
{% include career-profile.html %}
|
||||||
|
|
||||||
|
{% if site.education_in_main %}
|
||||||
|
{% include education-section.html %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
{% include experience.html %}
|
{% include experience.html %}
|
||||||
|
|
||||||
{% include projects.html %}
|
{% include projects.html %}
|
||||||
|
|
||||||
|
{% include publications.html %}
|
||||||
|
|
||||||
{% include skills.html %}
|
{% include skills.html %}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user