-
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.
secondary pages and highlighted projects
- Loading branch information
1 parent
94cc40b
commit dfdd7c2
Showing
10 changed files
with
419 additions
and
62 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
<template> | ||
<div class="container mx-auto my-auto"> | ||
<div class="flex flex-col mx-8"> | ||
<article class="prose"> | ||
<router-link to="/" class="no-underline"> | ||
<h4 class="mt-16 text-primary"> | ||
<font-awesome-icon icon="fa-solid fa-arrow-left" class="mr-2" /> | ||
Lorenzo Palaia | ||
</h4> | ||
</router-link> | ||
<h1 class="mb-16">Education</h1> | ||
</article> | ||
<table class="table"> | ||
<thead class="sticky top-0 backdrop-blur"> | ||
<tr class="border-b-neutral-800"> | ||
<th class="text-neutral-200 font-bold table-cell">Period</th> | ||
<th class="text-neutral-200 font-bold table-cell">Degree</th> | ||
<th class="text-neutral-200 font-bold table-cell">School</th> | ||
<th class="text-neutral-200 font-bold hidden lg:table-cell"> | ||
Location | ||
</th> | ||
<th class="text-neutral-200 font-bold hidden md:table-cell"> | ||
Link | ||
</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr | ||
v-for="edu in education" | ||
:key="edu" | ||
class="border-b-neutral-800" | ||
> | ||
<td class="text-neutral-400 font-light table-cell"> | ||
{{ edu.date }} | ||
</td> | ||
<td class="text-neutral-200 font-bold table-cell"> | ||
{{ edu.degree }} | ||
</td> | ||
<td class="text-neutral-400 font-light table-cell"> | ||
{{ edu.school }} | ||
</td> | ||
<td class="text-neutral-400 font-light hidden lg:table-cell"> | ||
{{ edu.location }} | ||
</td> | ||
<td class="text-neutral-400 font-light hidden md:table-cell group"> | ||
<a | ||
:href="edu.url" | ||
target="_blank" | ||
class="group-hover:text-primary transition duration-250 ease-in-out" | ||
> | ||
{{ edu.url.replace(/^(https?:\/\/)?(www\.)?/i, '') }} | ||
<font-awesome-icon | ||
v-if="edu.url" | ||
icon="fa-solid fa-arrow-right" | ||
class="ml-2" | ||
/> | ||
</a> | ||
</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
import personalInfo from "../assets/personalInfo.json"; | ||
export default { | ||
data: () => ({ | ||
education: personalInfo.education, | ||
}), | ||
mounted() { | ||
document.title = "Projects | Lorenzo Palaia"; | ||
window.scrollTo(0, 0); | ||
}, | ||
}; | ||
</script> | ||
|
||
<style></style> |
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,93 @@ | ||
<template> | ||
<div class="container mx-auto my-auto"> | ||
<div class="flex flex-col mx-8"> | ||
<article class="prose"> | ||
<router-link to="/" class="no-underline"> | ||
<h4 class="mt-16 text-primary"> | ||
<font-awesome-icon icon="fa-solid fa-arrow-left" class="mr-2" /> | ||
Lorenzo Palaia | ||
</h4> | ||
</router-link> | ||
<h1 class="mb-16">Extra Activities</h1> | ||
</article> | ||
<table class="table"> | ||
<thead class="sticky top-0 backdrop-blur"> | ||
<tr class="border-b-neutral-800"> | ||
<th class="text-neutral-200 font-bold table-cell">Period</th> | ||
<th class="text-neutral-200 font-bold table-cell">Activty</th> | ||
<th class="text-neutral-200 font-bold table-cell">Role</th> | ||
<th class="text-neutral-200 font-bold hidden lg:table-cell"> | ||
Location | ||
</th> | ||
<th class="text-neutral-200 font-bold hidden lg:table-cell"> | ||
Technologies | ||
</th> | ||
<th class="text-neutral-200 font-bold hidden md:table-cell"> | ||
Link | ||
</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr | ||
v-for="activity in extraActivities" | ||
:key="activity" | ||
class="border-b-neutral-800" | ||
> | ||
<td class="text-neutral-400 font-light table-cell"> | ||
{{ activity.date }} | ||
</td> | ||
<td class="text-neutral-200 font-bold table-cell"> | ||
{{ activity.name }} | ||
</td> | ||
<td class="text-neutral-400 font-light table-cell"> | ||
{{ activity.role }} | ||
</td> | ||
<td class="text-neutral-400 font-light hidden lg:table-cell"> | ||
{{ activity.location }} | ||
</td> | ||
<td class="hidden lg:table-cell"> | ||
<div | ||
v-for="badge in activity.badges" | ||
:key="badge" | ||
class="badge badge-lg badge-secondary m-1" | ||
> | ||
<p class="text-primary font-light">{{ badge }}</p> | ||
</div> | ||
</td> | ||
<td class="text-neutral-400 font-light hidden md:table-cell group"> | ||
<a | ||
:href="activity.url" | ||
target="_blank" | ||
class="group-hover:text-primary transition duration-250 ease-in-out" | ||
> | ||
{{ activity.url.replace(/^(https?:\/\/)?(www\.)?/i, "") }} | ||
<font-awesome-icon | ||
v-if="activity.url" | ||
icon="fa-solid fa-arrow-right" | ||
class="ml-2" | ||
/> | ||
</a> | ||
</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
import personalInfo from "../assets/personalInfo.json"; | ||
export default { | ||
data: () => ({ | ||
extraActivities: personalInfo.extraActivities, | ||
}), | ||
mounted() { | ||
document.title = "Work activity | Lorenzo Palaia"; | ||
window.scrollTo(0, 0); | ||
}, | ||
}; | ||
</script> | ||
|
||
<style></style> |
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.