Skip to content

Commit

Permalink
added CV pdf file
Browse files Browse the repository at this point in the history
  • Loading branch information
jvillasr committed Oct 4, 2023
1 parent 44224d1 commit c95ddf2
Show file tree
Hide file tree
Showing 12 changed files with 166 additions and 2 deletions.
Binary file modified .DS_Store
Binary file not shown.
5 changes: 4 additions & 1 deletion _includes/dropdown.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,11 @@
{% endunless %}
{% endfor %}
<!-- Additional links -->
<a href="https://raw.githubusercontent.com/jvillasr/jvillasr.github.io/master/assets/docs/JIV_CV_oct2023.pdf" class="navbar-item has-text-grey-light">
My CV (PDF)
</a>
<a href="https://jvillasr.github.io/blog" class="navbar-item has-text-grey-light">
New Page
Blog
</a>
<!-- <hr class="navbar-divider">
<a class="navbar-item">
Expand Down
1 change: 1 addition & 0 deletions _includes/navbar.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
<a class="navbar-item" href="{{site.url}}{{site.baseurl}}/#about">ABOUT</a>
<a class="navbar-item" href="{{site.url}}{{site.baseurl}}/#contact">CONTACT</a>
<a class="navbar-item" href="{{site.url}}{{site.baseurl}}/#research">RESEARCH</a>
<a class="navbar-item" href="{{site.url}}{{site.baseurl}}/#resume">RESUME</a>
<!-- <a class="navbar-item {% if page.layout == 'blog' %}is-active{% endif %}"
href="{{site.url}}{{site.baseurl}}/blog">BLOG</a> -->
{% include dropdown.html %}
Expand Down
17 changes: 17 additions & 0 deletions _includes/research-card.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<div class="columns is-centered is-multiline is-mobile">
{% for project in site.data.projects %}
<div class="column has-text-centered is-paddingless is-marginless is-one-third-widescreen is-one-third-desktop is-one-fifth-fullhd is-one-third-tablet is-two-fifths-mobile is-three-quarters-touch"
id="project-card">
<a href="{{project.link}}" target="_blank">
<div class="has-background-black card">
<figure class="image is-3by1" style="background-image: url({{project.image}});">
</figure>
<div class="card-content">
<h1 class="title has-text-white is-size-4">{{ project.name }}</h1>
<p class="has-text-white has-text-weight-light content">{{ project.description | truncate: 80}}</p>
</div>
</div>
</a>
</div>
{% endfor %}
</div>
2 changes: 1 addition & 1 deletion _includes/research.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<section class="hero is-fullheight" id="research">
<section class="hero is-fullheight has-background-white-ter" id="research">
<div class="hero-body">
<div class="container has-text-centered">
<div class="section">
Expand Down
Empty file added _includes/resume-card.html
Empty file.
65 changes: 65 additions & 0 deletions _includes/resume.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
<section class="hero is-fullheight" id="resume">
<div class="hero-body">
<div class="container">
<div class="section">
<h1 class="title is-uppercase has-text-weight-semibold has-text-black resume-title">Resume</h1>
</div>
<div class="section">
<div class="container">
<h1 class="title has-text-primary">Experience</h1>
<!-- Experience table goes here -->
<div class="resume-entry"> <!-- /div -->
<div class="twocols">
<div class="date"> 09.2023 - Present</div>
<div class="title">Postdoc</div>
</div>
<div class="institution">Max Planck Institute for Astronomy, Germany</div>
<div class="description">Working for the ERC Advanced Grant ”Hunting Dormant Black Holes in the Galaxy with SDSS-V” (PI: HW. Rix).</div>
<a class="link" href="https://www.mpia.de/rix/team">Webpage</a>
</div>
<div class="resume-entry"> <!-- /div -->
<div class="twocols">
<div class="date"> 09.2021 - 08.2023</div>
<div class="title">Postdoc</div>
</div>
<div class="institution">KU Leuven, Belgium</div>
<div class="description">Working for the MULTIPLES research programme under an ERC consolidator grant (PI: H. Sana).</div>
<a class="link" href="https://fys.kuleuven.be/ster/research-projects/multiples">Webpage</a>
</div>
<h1 class="title has-text-primary">Education</h1>
<!-- Education table goes here -->
<div class="resume-entry"> <!-- /div -->
<div class="twocols">
<div class="date"> 2016 - 2021</div>
<div class="title">PhD Astronomy</div>
</div>
<div class="institution">University of Edinburgh, U.K.</div>
<div class="thesis">"The multiplicity properties and spectral classification of B-type stars"</div>
<div class="supervisor">Prof. Dr. Chris Evans</div>
</div>
<div class="resume-entry"> <!-- /div -->
<div class="twocols">
<div class="date"> 2014 - 2016</div>
<div class="title">MSc Astronomy</div>
</div>
<div class="institution">Universidad de La Serena, Chile</div>
<div class="thesis">"Spectral Classification of B-Type Stars Observed in the Framework of the “Galactic O-Star Spectroscopic Survey"</div>
<div class="supervisor">Prof. Dr. Rodolfo Barbá</div>
</div>
<div class="resume-entry"> <!-- /div -->
<div class="twocols">
<div class="date"> 2007 - 2012</div>
<div class="title">BSc Physics with a major in Astronomy</div>
</div>
<div class="institution">Universidad de Valparaíso, Chile</div>
<div class="thesis">"Evolution of Compact Binaries: The Future of Post-Common-Envelope Binaries"</div>
<div class="supervisor">Prof. Dr. Matthias Schreiber</div>
</div>
<h1 class="title has-text-primary">Publications</h1>
<!-- Publications list goes here -->
</div>
</div>
</div>
</div>
</section>
</div>
1 change: 1 addition & 0 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
{% include about.html %}
{% include contact.html %}
{% include research.html %}
{% include resume.html %}
<!--Footer begins here-->
{% include footer.html %}
</body>
Expand Down
Binary file modified assets/.DS_Store
Binary file not shown.
77 changes: 77 additions & 0 deletions assets/css/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,83 @@ a.navbar-item.is-active {
}
}

#resume {
/* Define your styling for the whole resume section here */
// background-color: #000000; /* Example background color */
// padding: 20px; /* Example padding */
// border: 1px solid #E0E0E0; /* Example border */
.has-text-primary {
color: #FF5733 !important; /* Change this to your desired color */
font-size: 28px !important;
text-align: left;
margin-bottom: 20px !important;
}

.resume-title {
font-size: 2rem !important; /* Your desired font size */
font-weight: bold; /* Your desired font weight */
text-align: center; /* Your desired text alignment */
}

.resume-entry {
margin-bottom: 20px; /* Adjust spacing between entries */
margin-left: 40px !important;
}
.twocols {
display: flex;
// flex-direction: column
}

.date {
color: black; /* Date color */
// font-weight: bold;
font-size: 16px;
// margin-left: 60px
// flex-basis: 15%;
// align-self: flex-start;
margin-top: auto;
}

.title {
color: #007BFF;
// font-style: italic;
font-size: 24px;
// flex-grow: 1; /* Allow title to grow and take remaining space */
}

.institution {
color: #979797; /* Institution color */
font-style: italic;
font-size: 20px;
}

.description {
color: #333; /* Description color */
}

.thesis {
color: #333; /* Description color */
font-weight: 600;
}

.supervisor {
color: #333; /* Description color */
}

.link {
color: #cdcdcd; /* Link color */
text-decoration: none;
border-bottom: 1px dashed #cdcdcd;
font-size: 14px;
}

.link:hover {
color: rgb(200, 251, 249); /* Hover color for link */
}

}


#project {
.columns {
.column {
Expand Down
Binary file added assets/docs/.DS_Store
Binary file not shown.
Binary file added assets/docs/JIV_CV_oct2023.pdf
Binary file not shown.

0 comments on commit c95ddf2

Please sign in to comment.