Skip to content

Commit

Permalink
Added hyperlinks to material-dark sections
Browse files Browse the repository at this point in the history
Added hyperlinks for education and experience sections in material-dark
  • Loading branch information
CedArctic committed May 8, 2019
1 parent 63e9d0d commit b5301fd
Showing 1 changed file with 24 additions and 12 deletions.
36 changes: 24 additions & 12 deletions src/resumes/material-dark.vue
Original file line number Diff line number Diff line change
Expand Up @@ -100,20 +100,26 @@

<div class="section-headline">{{ lang.experience }}</div>
<div class="block" v-for="experience in person.experience" :key="experience.company">
<div class="block-helper"></div>
<h3 class="headline">{{experience.position}} - {{experience.company}}</h3>
<div class="subheadline">{{experience.timeperiod}}</div>
<p class="info">
{{experience.description}}
</p>
<a
:href="experience.website">
<div class="block-helper"></div>
<h3 class="headline">{{experience.position}} - {{experience.company}}</h3>
<div class="subheadline">{{experience.timeperiod}}</div>
<p class="info">
{{experience.description}}
</p>
</a>
</div>
<div class="section-headline">{{ lang.education }}</div>
<div class="block" v-for="education in person.education" :key="education.degree">
<div class="block-helper"></div>
<div class="headline">{{education.degree}}</div>
<p class="info">
{{education.timeperiod}}, {{education.description}}
</p>
<a
:href="education.website">
<div class="block-helper"></div>
<div class="headline">{{education.degree}}</div>
<p class="info">
{{education.timeperiod}}, {{education.description}}
</p>
</a>
</div>
</div>

Expand All @@ -136,7 +142,13 @@ export default Vue.component(name, getVueOptions(name));
background:#cccccc;
}
a {
cursor:pointer;
color: inherit;
cursor: pointer;
text-decoration-line: none;

&:visited {
color: inherit;
}
}
.description-personal {
margin-left:20px;
Expand Down

0 comments on commit b5301fd

Please sign in to comment.