Compare commits
7 Commits
develop
...
9a73fe708e
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9a73fe708e | ||
| c86542dabf | |||
| 5359bc96a5 | |||
| c507c34138 | |||
|
|
f947c96777 | ||
|
|
23b18ccc7a | ||
|
|
7cbbdf2f1a |
18
default.conf
@@ -1,18 +0,0 @@
|
||||
server {
|
||||
# The port to listen on
|
||||
listen 80;
|
||||
# The root directory, which must exactly match the internal volume share
|
||||
root /usr/share/nginx/html;
|
||||
|
||||
# For all files with the PHP extension run the following
|
||||
location ~ ^/.+\.php(/|$) {
|
||||
# Pass the request to the host "php" and port 9000 (default PHP-FPM port)
|
||||
fastcgi_pass php:9000;
|
||||
# Include the default NGINX FastCGI Parameters
|
||||
include fastcgi_params;
|
||||
# Define one additional parameter telling PHP-FPM where to find the file
|
||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||
}
|
||||
add_header Cache-Control no-cache;
|
||||
expires 1s;
|
||||
}
|
||||
@@ -1,23 +0,0 @@
|
||||
# The specification version of Docker-compose
|
||||
version: "3.9"
|
||||
# The collection of applications composing this service
|
||||
services:
|
||||
# The NGINX custom container
|
||||
web:
|
||||
# Instead of referencing image: nginx:mainline-alpine here, use build to
|
||||
# reference the current directory (.), which will look for a dockerfile
|
||||
# by default
|
||||
build: .
|
||||
# The external directory location to map to an internal location
|
||||
volumes:
|
||||
- /home/gianm/Project/myCv/build:/usr/share/nginx/html
|
||||
# The external port mapping to internal port mapping
|
||||
ports:
|
||||
- "80:80"
|
||||
php:
|
||||
image: php:fpm-alpine
|
||||
ports:
|
||||
- "9000:9000"
|
||||
# It is important that both containers can reference the same files
|
||||
volumes:
|
||||
- /home/gianm/Project/myCv/build:/usr/share/nginx/html
|
||||
@@ -1,6 +0,0 @@
|
||||
# The image to pull the base configuration from
|
||||
FROM nginx:mainline-alpine
|
||||
# The directory where any additional files will be referenced
|
||||
WORKDIR /home/gianm/Project/myCv/build
|
||||
# Copy the custom default.conf from the WORKDIR (.) and overwrite the existing internal configuration in the NGINX container
|
||||
COPY ./default.conf /etc/nginx/conf.d/default.conf
|
||||
13
list of cv
@@ -1,13 +0,0 @@
|
||||
lista delle cose da mettere in cv
|
||||
Laurea in scienze informatiche all'università di Padova.
|
||||
Questo sito web
|
||||
Greenpass scanner web; with Marco Celadin
|
||||
GoCart project; with Marco Celadin
|
||||
Server in casa - {server git, reverse proxy}
|
||||
Tirocinio di due mesi ad Athesys.
|
||||
Stampante 3d rpi
|
||||
swe typescript, Docker, serverless-framework - { latex multi compiler, serverless service, Docker }
|
||||
Pao c++ - Qontainer
|
||||
Antrlr parser 1 e 2; with Mariano Sciacco
|
||||
Telegram bot alternativestudio
|
||||
Progetto Leonardo - ICT in Saxon Hill Academy Dean
|
||||
13181
package-lock.json
generated
@@ -30,6 +30,7 @@
|
||||
"svelte": "^3.42.6",
|
||||
"svelte-check": "^2.2.6",
|
||||
"svelte-jester": "^2.1.5",
|
||||
"svelte-meta-tags": "^2.5.5",
|
||||
"svelte-preprocess": "^4.9.4",
|
||||
"svelte-preprocess-markdown": "^2.7.3",
|
||||
"svelte-scrollto": "^0.2.0",
|
||||
@@ -42,7 +43,6 @@
|
||||
"@fortawesome/fontawesome-free": "^5.15.4",
|
||||
"json-schema-to-typescript": "^10.1.5",
|
||||
"markdown-it": "^12.2.0",
|
||||
"milligram": "^1.4.1",
|
||||
"punycode": "^2.1.1"
|
||||
}
|
||||
}
|
||||
61
src/app.scss
@@ -1,3 +1,64 @@
|
||||
$basecolor:#E5E5E5;
|
||||
$basecolor2:#FFFFFF;
|
||||
$accent2: #256EFF;
|
||||
$contrast: #14213D;
|
||||
$contrast2: #000000;
|
||||
$img-contrast: #14213D;
|
||||
|
||||
$text-color: #011936;
|
||||
$border-color: #256EFF;
|
||||
$button-border-color: #256EFF;
|
||||
|
||||
$min-tablet: 768px;
|
||||
$min-desktop: 1024px;
|
||||
$default-border-radius:5px;
|
||||
|
||||
:root {
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
||||
color: $text-color;
|
||||
background-color: $basecolor
|
||||
}
|
||||
|
||||
.box-with-shadow {
|
||||
border-style: solid;
|
||||
border-width: 0.1px;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.default{
|
||||
margin: auto;
|
||||
@media (min-width: $min-tablet) {
|
||||
width: 80%;
|
||||
max-width: 1024px;
|
||||
}
|
||||
}
|
||||
|
||||
.image-container{
|
||||
width: 80%;
|
||||
margin: auto;
|
||||
text-align: center;
|
||||
align-items: center;
|
||||
img{
|
||||
max-width: 100%;
|
||||
max-height: 300px;
|
||||
object-fit: scale-down;
|
||||
@media (prefers-color-scheme: light) {
|
||||
background-color: $contrast;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
a {
|
||||
text-decoration:none;
|
||||
color: $text-color;
|
||||
}
|
||||
|
||||
button{
|
||||
color: $text-color;
|
||||
}
|
||||
|
||||
h1, h2, h3 {
|
||||
font-weight: normal;
|
||||
}
|
||||
@@ -1,130 +1,68 @@
|
||||
<script lang="ts">
|
||||
import Contacts from './Contacts.svelte';
|
||||
import Skills from './Skills.svelte';
|
||||
export let currentLanguage = 'it';
|
||||
const whoIt='Ciao! Sono Gianmarco Pettinato, mi sono laureato in scienze informatiche e sono uno sviluppatore full-stack.\
|
||||
const whoIt =
|
||||
"Ciao! Sono Gianmarco Pettinato, mi sono laureato in scienze informatiche e sono uno sviluppatore full-stack.\
|
||||
Ho famigliarità con diversi linguaggi e framework, sia front-end che back-end.\
|
||||
In particolare con C++ con Qt e TypeScript con Express, serverless, Angular, Vue.js e Svelte.\
|
||||
Tra le mie competenze, oltre allo sviluppo software e alla manutenzione di sistemi linux, spicca la gestione di ambienti CI/CD, con pipeline automatiche e container come Docker.\
|
||||
Sono interessato in particolar modo all\'ambiente dei dispositivi IoT e del wearble tech.\
|
||||
Sono interessato in particolar modo all'ambiente dei dispositivi IoT e del wearble tech.\
|
||||
Nel tempo libero mi dedico alla gestione del mio home sever e alla costruzione e manutenzione di computer.\
|
||||
Per maggiori informazioni non esitate a contattarmi.';
|
||||
const whoEn='Hi! I\'m Gianmarco Pettinato. I have a bachelor degree in computer science, and I\'m a full-stack developer.\
|
||||
Per maggiori informazioni non esitate a contattarmi.";
|
||||
const whoEn =
|
||||
"Hi! I'm Gianmarco Pettinato. I have a bachelor degree in computer science, and I'm a full-stack developer.\
|
||||
I know several languages and frameworks, either front-end or back-end.\
|
||||
In particular, I have experience in C++ with Qt and TypeScript with Express, serverless, Angular, Vue.js and Svelte.\
|
||||
Among my skill-set, there is the administration of the CI/CD environment with Docker.\
|
||||
I\'m interested in the IoT world and Wearable tech. In my free time, I like to manage my GNU/Linux home server and build PCs.';
|
||||
I'm interested in the IoT world and Wearable tech. In my free time, I like to manage my GNU/Linux home server and build PCs.";
|
||||
|
||||
const who = {
|
||||
it:whoIt,
|
||||
en:whoEn
|
||||
}
|
||||
// export function changeLanguage(language = 'it'){
|
||||
// currentLanguage = language
|
||||
// }
|
||||
it: whoIt,
|
||||
en: whoEn
|
||||
};
|
||||
</script>
|
||||
|
||||
<div class="aboutMe">
|
||||
<div class="header"><img src="/profile_pic.jpg" alt="profile" class="profile" />
|
||||
<div class="info">
|
||||
<h1>Gianmarco Pettinato</h1>
|
||||
<div>
|
||||
<a href="https://twitter.com/jatus_93"><i class="fab fa-twitter"></i></a>
|
||||
<a href="https://www.linkedin.com/in/gianmarco-pettinato/"><i class="fab fa-linkedin-in"></i></a>
|
||||
<a href="https://t.me/jatus_93"><i class="fab fa-telegram-plane"></i></a>
|
||||
<a href="mailto:gianmarco@pettinato.eu"><i class="fas fa-at"></i></a>
|
||||
<a href="https://github.com/Jatus93/"><i class="fab fa-github"></i></a>
|
||||
<a href="https://git.jatus.tech/Jatus"><i class="fab fa-git-alt"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="presentazione">
|
||||
<Contacts />
|
||||
<div class="whoIAm">
|
||||
<p>
|
||||
{who[currentLanguage]}
|
||||
</p>
|
||||
</div>
|
||||
<div class="cv">
|
||||
<a rel="external" href="/curriculum_it.pdf"><i class="fas fa-download"></i> curriculum_it.pdf</a>
|
||||
<a rel="external" href="/curriculum_en.pdf"><i class="fas fa-download"></i> curriculum_en.pdf</a>
|
||||
<div>
|
||||
<a rel="external" href="/curriculum_it.pdf"
|
||||
>curriculum_it.pdf <i class="fas fa-download" />
|
||||
</a>
|
||||
</div>
|
||||
<div>
|
||||
<a rel="external" href="/curriculum_en.pdf"
|
||||
>curriculum_en.pdf <i class="fas fa-download" />
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<Skills />
|
||||
</div>
|
||||
|
||||
<style lang="scss">
|
||||
@import './static/colors.scss';
|
||||
@import '/node_modules/@fortawesome/fontawesome-free/css/all.css';
|
||||
.aboutMe{
|
||||
background-color: $cultured;
|
||||
border-radius: 10px;
|
||||
@import '../app.scss';
|
||||
.cv {
|
||||
width: 80%;
|
||||
margin: auto;
|
||||
max-width: $cv-max-width;
|
||||
width: 90%;
|
||||
height: auto;
|
||||
border-width: 0.1px;
|
||||
border-color: $rich-black-fogra-29;
|
||||
border-radius: 10px;
|
||||
box-shadow: -12px 26px 25px -14px $rich-black-fogra-29;
|
||||
-webkit-box-shadow: -12px 26px 25px -14px $rich-black-fogra-29;
|
||||
-moz-box-shadow: -12px 26px 25px -14px $rich-black-fogra-29;
|
||||
padding: 1vh;
|
||||
padding-bottom: 2vh;
|
||||
padding-top: 2vh;
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
.cv>a{
|
||||
font-size: unset;
|
||||
text-decoration: none;
|
||||
width: 50%;
|
||||
margin: 20px;
|
||||
}
|
||||
.cv{
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.profile{
|
||||
border-radius: 50%;
|
||||
width: 35vw;
|
||||
max-width: 150px;
|
||||
border: solid $rich-black-fogra-29 1px;
|
||||
box-shadow: -1px 2px 2px -1px $rich-black-fogra-29;
|
||||
-webkit-box-shadow: -1px 2px 2px -1px $rich-black-fogra-29;
|
||||
-moz-box-shadow: -1px 2px 2px -1px $rich-black-fogra-29;
|
||||
|
||||
}
|
||||
|
||||
.info{
|
||||
margin: 1px;
|
||||
text-align: center;
|
||||
justify-content: center;
|
||||
color: $rich-black-fogra-29;
|
||||
}
|
||||
|
||||
.info>h1{
|
||||
font-size: 28px;
|
||||
}
|
||||
|
||||
a,a:visited{
|
||||
font-size: 1.5em;
|
||||
color: $rich-black-fogra-29;
|
||||
margin: 2px;
|
||||
}
|
||||
|
||||
.presentazione{
|
||||
width: 90%;
|
||||
margin: auto;
|
||||
text-justify: distribute;
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
.header{
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-evenly;
|
||||
align-items: center;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 600px) {
|
||||
.aboutMe{
|
||||
max-width: $cv-max-width;
|
||||
width: 80vw;
|
||||
.whoIAm {
|
||||
margin: auto;
|
||||
text-align: justify;
|
||||
}
|
||||
.aboutMe {
|
||||
background-color: $basecolor2;
|
||||
// border: solid 1px $border-color;
|
||||
border-radius: $default-border-radius;
|
||||
padding: 30px;
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
@@ -1,81 +1,80 @@
|
||||
<script lang="ts"></script>
|
||||
<div class="contactContainer">
|
||||
<div class="contacts">
|
||||
<div class="header"><img src="/profile_pic.jpg" alt="profile" class="profile" /></div>
|
||||
<ul class="contact-list">
|
||||
<li><i class="fas fa-at"></i> e-mail: <a href="mailto://gianmarco@pettinato.eu">gianmarco@pettinato.eu</a></li>
|
||||
<li><i class="fab fa-telegram-plane"></i> telegram: <a href="https://t.me/jatus_93">@jatus_93</a></li>
|
||||
<li><i class="fab fa-twitter"></i> twitter: <a href="https://twitter.com/jatus_93">@jatus_93</a></li>
|
||||
<li><i class="fab fa-linkedin-in"></i> linkedin: <a href="https://www.linkedin.com/in/gianmarco-pettinato/">Gianmarco Pettinato</a></li>
|
||||
|
||||
<div class="contacts">
|
||||
<img src="/profile_pic.webp" alt="profile" class="profile" />
|
||||
<div class="links">
|
||||
<ul>
|
||||
<li>
|
||||
<a href="mailto://gianmarco@pettinato.eu"
|
||||
><i class="fas fa-at" /> e-mail: gianmarco@pettinato.eu</a
|
||||
>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://t.me/jatus_93"><i class="fab fa-telegram-plane" /> telegram: @jatus_93</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://twitter.com/jatus_93"><i class="fab fa-twitter" /> twitter: @jatus_93</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://www.linkedin.com/in/gianmarco-pettinato/"
|
||||
><i class="fab fa-linkedin-in" /> linkedin: Gianmarco Pettinato</a
|
||||
>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<style lang="scss">
|
||||
@import './static/colors.scss';
|
||||
.contactContainer{
|
||||
margin: auto;
|
||||
background-color:$navajo-white;
|
||||
border-radius: 10px;
|
||||
width: 90%;
|
||||
border-radius: 10px;
|
||||
box-shadow: -12px 26px 25px -14px $rich-black-fogra-29;
|
||||
-webkit-box-shadow: -12px 26px 25px -14px $rich-black-fogra-29;
|
||||
-moz-box-shadow: -12px 26px 25px -14px $rich-black-fogra-29;
|
||||
padding: 1vh;
|
||||
}
|
||||
@import '../app.scss';
|
||||
|
||||
.contacts{
|
||||
background-color: $cultured;
|
||||
display: inline-flex;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
flex-wrap: wrap;
|
||||
align-items: center ;
|
||||
border-radius: 10px;
|
||||
padding: 1vh;
|
||||
background-color: $cultured;
|
||||
border-style: solid;
|
||||
border-width: 0.1px;
|
||||
}
|
||||
|
||||
.contacts>ul{
|
||||
list-style: none;
|
||||
}
|
||||
.contacts>ul>li{
|
||||
text-align: start;
|
||||
}
|
||||
|
||||
.profile{
|
||||
img.profile {
|
||||
border-radius: 50%;
|
||||
width: 35vw;
|
||||
max-width: 150px;
|
||||
border: solid $rich-black-fogra-29 1px;
|
||||
box-shadow: -1px 2px 2px -1px $rich-black-fogra-29;
|
||||
-webkit-box-shadow: -1px 2px 2px -1px $rich-black-fogra-29;
|
||||
-moz-box-shadow: -1px 2px 2px -1px $rich-black-fogra-29;
|
||||
|
||||
// border: solid 1px $border-color;
|
||||
}
|
||||
|
||||
a,a:visited{
|
||||
// text-decoration: none;
|
||||
color: $rich-black-fogra-29;
|
||||
margin: 2px;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 600px) {
|
||||
.contactContainer{
|
||||
.contacts {
|
||||
background-color: $basecolor2;
|
||||
// border: solid 1px $border-color;
|
||||
border-radius: $default-border-radius;
|
||||
padding: 30px;
|
||||
display: flex;
|
||||
height: auto;
|
||||
max-width: $cv-max-width;
|
||||
width: 80vw;
|
||||
flex-direction: column;
|
||||
justify-content: space-evenly;
|
||||
align-items: center;
|
||||
margin: auto;
|
||||
}
|
||||
.links {
|
||||
text-align: left;
|
||||
ul {
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
line-height: 20px;
|
||||
white-space: nowrap;
|
||||
li {
|
||||
padding: 0;
|
||||
margin: 10px;
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
|
||||
.contacts{
|
||||
width: 98%;
|
||||
a {
|
||||
font-size: 18px !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (min-width: $min-tablet) {
|
||||
.contacts {
|
||||
flex-direction: row;
|
||||
margin: auto;
|
||||
}
|
||||
.links {
|
||||
ul {
|
||||
li {
|
||||
a {
|
||||
font-size: auto !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.contacts>ul{
|
||||
margin: unset;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
77
src/elements/JobElement.svelte
Normal file
@@ -0,0 +1,77 @@
|
||||
<script lang="ts">
|
||||
import MarkdownIt from 'markdown-it';
|
||||
const md = new MarkdownIt({
|
||||
html: true,
|
||||
xhtmlOut: true,
|
||||
typographer: true,
|
||||
breaks: true,
|
||||
linkify: true
|
||||
});
|
||||
import type { Schema } from 'src/model/job';
|
||||
export let job: Schema;
|
||||
export let currentLanguage = '';
|
||||
</script>
|
||||
|
||||
<div class="job-container">
|
||||
<h3>{job.title[currentLanguage]}</h3>
|
||||
<div class="image-container">
|
||||
{#each job.images as image}
|
||||
<img src={image} alt={image} loading="lazy" />
|
||||
{/each}
|
||||
</div>
|
||||
<div class="text-content">
|
||||
{@html md.render(job.content[currentLanguage])}
|
||||
</div>
|
||||
<div class="added-info">
|
||||
{#if job.year.lenght != 0}
|
||||
Date: {job.year.start}{#if job.year.end.length != 0}; {job.year.end} {/if}
|
||||
{/if}
|
||||
<div>
|
||||
{#if job.collaborators.length != 0}
|
||||
Collab:
|
||||
{/if}
|
||||
{#each job.collaborators as collaborator, index}
|
||||
<a href={collaborator.ref}>{collaborator.name} {collaborator.surname}</a>{index !=
|
||||
job.collaborators.length - 1
|
||||
? ', '
|
||||
: ''}
|
||||
{/each}
|
||||
</div>
|
||||
<div>
|
||||
{#if job.languages.length != 0}
|
||||
Lang:
|
||||
{/if}
|
||||
{#each job.languages as language, index}
|
||||
{language}{index != job.languages.length - 1 ? ', ' : ''}
|
||||
{/each}
|
||||
</div>
|
||||
<div>
|
||||
{#if job.tecnologies.length != 0}
|
||||
Tech:
|
||||
{/if}
|
||||
{#each job.tecnologies as tecnology, index}
|
||||
{tecnology}{index != job.tecnologies.length - 1 ? ', ' : ''}
|
||||
{/each}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<style lang="scss">
|
||||
@import '../app.scss';
|
||||
.text-content {
|
||||
margin: auto;
|
||||
text-align: justify;
|
||||
}
|
||||
.added-info {
|
||||
text-align: left;
|
||||
font-size: smaller;
|
||||
}
|
||||
.job-container {
|
||||
img {
|
||||
background-color: $text-color;
|
||||
}
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
}
|
||||
</style>
|
||||
@@ -1,128 +1,42 @@
|
||||
<script lang="ts">
|
||||
import MarkdownIt from 'markdown-it';
|
||||
const md = new MarkdownIt({
|
||||
html:true,
|
||||
xhtmlOut:true,
|
||||
typographer: true,
|
||||
breaks: true,
|
||||
linkify: true
|
||||
});
|
||||
import type { Schema } from 'src/model/job';
|
||||
import JobElement from './JobElement.svelte';
|
||||
export let currentLanguage = '';
|
||||
export let jobs:Schema[] = [];
|
||||
export let isBlogContainer = false;
|
||||
export let jobs: Schema[] = [];
|
||||
</script>
|
||||
<div class="jobsContainer">
|
||||
{#each jobs as job }
|
||||
<div class="job container">
|
||||
<h3>{job.title[currentLanguage]}</h3>
|
||||
<div class="job-content">
|
||||
<div class="images-container">
|
||||
{#each job.images as image }
|
||||
<img src="{image}" alt="{image}"/>
|
||||
|
||||
<div class="jobs-container">
|
||||
{#if isBlogContainer}
|
||||
{#each jobs as job}
|
||||
<a href="#" class="job-card"><JobElement {job} {currentLanguage} /></a>
|
||||
{/each}
|
||||
{:else}
|
||||
{#each jobs as job}
|
||||
<div class="job-card"><JobElement {job} {currentLanguage} /></div>
|
||||
{/each}
|
||||
</div>
|
||||
<div class="text-content">
|
||||
{@html md.render(job.content[currentLanguage])}
|
||||
</div>
|
||||
</div>
|
||||
<div class="added-info">
|
||||
{#if job.year.lenght!=0}
|
||||
Date: {job.year.start}{#if job.year.end.length!=0}; {job.year.end} {/if}
|
||||
{/if}
|
||||
<div>
|
||||
{#if job.collaborators.length!=0}
|
||||
Collab:
|
||||
{/if}
|
||||
{#each job.collaborators as collaborator, index }
|
||||
<a href="{collaborator.ref}">{collaborator.name} {collaborator.surname}</a>{index!=job.collaborators.length-1?', ':''}
|
||||
{/each}
|
||||
</div>
|
||||
<div>
|
||||
{#if job.languages.length!=0}
|
||||
Lang:
|
||||
{/if}
|
||||
{#each job.languages as language,index }
|
||||
{language}{index!=job.languages.length-1?', ':''}
|
||||
{/each}
|
||||
</div>
|
||||
<div>
|
||||
{#if job.tecnologies.length!=0}
|
||||
Tech:
|
||||
{/if}
|
||||
{#each job.tecnologies as tecnology, index }
|
||||
{tecnology}{index!=job.tecnologies.length-1?', ':''}
|
||||
{/each}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/each}
|
||||
</div>
|
||||
|
||||
<style lang="scss">
|
||||
@import './static/colors.scss';
|
||||
.jobsContainer{
|
||||
margin: auto;
|
||||
background-color:$steel-blue;
|
||||
@import '../app.scss';
|
||||
.jobs-container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
flex-wrap: wrap;
|
||||
border-radius: 10px;
|
||||
width: 90%;
|
||||
border-radius: 10px;
|
||||
box-shadow: -12px 26px 25px -14px $rich-black-fogra-29;
|
||||
-webkit-box-shadow: -12px 26px 25px -14px $rich-black-fogra-29;
|
||||
-moz-box-shadow: -12px 26px 25px -14px $rich-black-fogra-29;
|
||||
padding: 1vh;
|
||||
padding: 10px;
|
||||
}
|
||||
.job{
|
||||
background-color: $cultured;
|
||||
text-align: center;
|
||||
width: 98%;
|
||||
border-radius: 10px;
|
||||
margin-bottom: 1vh;
|
||||
padding: 1vh;
|
||||
background-color: $cultured;
|
||||
border-style: solid;
|
||||
border-width: 0.1px;
|
||||
.job-card {
|
||||
background-color: $basecolor2;
|
||||
border-radius: $default-border-radius;
|
||||
padding: 10px 10px;
|
||||
margin-bottom: 30px;
|
||||
@media (min-width: $min-desktop) {
|
||||
width: 29vw;
|
||||
}
|
||||
.job:last-child{
|
||||
margin-bottom: 0px;
|
||||
@media (min-width: 1400px) {
|
||||
width: 400px;
|
||||
}
|
||||
|
||||
.job-content{
|
||||
padding: 2vh;
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.added-info{
|
||||
font-size: 13px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.text-content{
|
||||
margin: auto;
|
||||
text-align: justify;
|
||||
width: 95%;
|
||||
}
|
||||
|
||||
|
||||
|
||||
img{
|
||||
width: auto;
|
||||
max-width: 80%;
|
||||
max-height: 20%;
|
||||
background-color: $rich-black-fogra-29;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 600px) {
|
||||
.jobsContainer{
|
||||
display: flex;
|
||||
height: auto;
|
||||
max-width: $cv-max-width;
|
||||
width: 80vw;
|
||||
}
|
||||
|
||||
.job-content{
|
||||
flex-wrap: unset;
|
||||
}
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
@@ -1,86 +1,89 @@
|
||||
<script lang="ts">
|
||||
import { scrollto } from "svelte-scrollto";
|
||||
export let currentLanguage = 'it'
|
||||
export const menu = {home:{it:"Home",en:"Home"},
|
||||
job:{it:"Esperienze",en:"Experiences"},
|
||||
school:{it:"Formazione",en:"Training"},
|
||||
contacts:{it:"Contatti",en:"Contacts"},
|
||||
portfolio:{it:"Portfolio",en:"Portfolio"}}
|
||||
import { scrollto } from 'svelte-scrollto';
|
||||
export let currentLanguage = 'it';
|
||||
export const menu = {
|
||||
home: { it: 'Home', en: 'Home' },
|
||||
job: { it: 'Esperienze', en: 'Experiences' },
|
||||
school: { it: 'Formazione', en: 'Training' },
|
||||
blog: { it: 'Blog', en: 'Blog' },
|
||||
portfolio: { it: 'Portfolio', en: 'Portfolio' }
|
||||
};
|
||||
</script>
|
||||
|
||||
<div class="div-menu">
|
||||
<div class="wrapper">
|
||||
<a use:scrollto={{element:'#home', offset:-70}} class="menu-element" href="#home" alt="{menu.home[currentLanguage]}"><i class="fas fa-home"></i><span class="hide">{menu.home[currentLanguage]}</span></a>
|
||||
<a use:scrollto={{element:'#jobs', offset:-50}} class="menu-element" href="#jobs" alt="{menu.job[currentLanguage]}"><i class="fas fa-user-tie"></i><span class="hide">{menu.job[currentLanguage]}</span></a>
|
||||
<a use:scrollto={{element:'#training', offset:-50}} class="menu-element" href="#training" alt="{menu.school[currentLanguage]}"><i class="fas fa-graduation-cap"></i><span class="hide">{menu.school[currentLanguage]}</span></a>
|
||||
<a use:scrollto={{element:'#portfolio', offset:-50}} class="menu-element" href="#portfolio" alt="{menu.portfolio[currentLanguage]}"><i class="fas fa-user-clock"></i><span class="hide">{menu.portfolio[currentLanguage]}</span></a>
|
||||
<a use:scrollto={{element:'#contacts', offset:-50}} class="menu-element" href="#contacts" alt="{menu.contacts[currentLanguage]}"><i class="fas fa-address-card"></i><span class="hide">{menu.contacts[currentLanguage]}</span></a>
|
||||
<a class="menu-element" href="/#top">
|
||||
<span class="hide">{menu.home[currentLanguage]}</span><i class="fas fa-home" /></a
|
||||
>
|
||||
|
||||
<a class="menu-element" href="#jobs"
|
||||
><span class="hide">{menu.job[currentLanguage]}</span><i class="fas fa-user-tie" /></a
|
||||
>
|
||||
|
||||
<a class="menu-element" href="#training"
|
||||
><span class="hide">{menu.school[currentLanguage]}</span><i
|
||||
class="fas fa-graduation-cap"
|
||||
/></a
|
||||
>
|
||||
|
||||
<a class="menu-element" href="#portfolio"
|
||||
><span class="hide">{menu.portfolio[currentLanguage]}</span><i class="fas fa-user-clock" /></a
|
||||
>
|
||||
|
||||
<a class="menu-element" href="/blog" alt={menu.blog[currentLanguage]}
|
||||
><span class="hide">{menu.blog[currentLanguage]}</span><i class="fas fa-address-card" /></a
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<style lang="scss">
|
||||
@import '../app.scss';
|
||||
@import '/node_modules/@fortawesome/fontawesome-free/css/all.css';
|
||||
@import './static/colors.scss';
|
||||
.div-menu{
|
||||
.hide {
|
||||
@media (max-width: $min-tablet) {
|
||||
position: absolute;
|
||||
left: -10000px;
|
||||
top: auto;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
overflow: hidden;
|
||||
}
|
||||
}
|
||||
.div-menu {
|
||||
width: 100%;
|
||||
background-color: $steel-blue;
|
||||
max-width: 1024px;
|
||||
}
|
||||
|
||||
.menu-element {
|
||||
background-color: $cultured;
|
||||
display: flex;
|
||||
flex-direction: row-reverse;
|
||||
align-items: center;
|
||||
justify-content: space-evenly;
|
||||
text-decoration: none;
|
||||
color: $rich-black-fogra-29;
|
||||
width: 13%;
|
||||
height: 30px;
|
||||
margin: 10px;
|
||||
border-radius: 10px;
|
||||
text-align: center;
|
||||
border-color: $rich-black-fogra-29;
|
||||
}
|
||||
|
||||
.menu-element:hover{
|
||||
background-color: $navajo-white;
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-evenly;
|
||||
width: 100%;
|
||||
margin: auto;
|
||||
height: auto;
|
||||
max-width: $cv-max-width;
|
||||
}
|
||||
|
||||
.hide{
|
||||
display: none;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 666px) {
|
||||
.div-menu{
|
||||
display: flex;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.menu-element {
|
||||
background-color: $cultured;
|
||||
text-decoration: none;
|
||||
color: $rich-black-fogra-29;
|
||||
width: 17%;
|
||||
height: 30px;
|
||||
margin-left: 5px;
|
||||
margin-right: 5px;
|
||||
border-radius: 10px;
|
||||
a {
|
||||
border-radius: $default-border-radius;
|
||||
width: 50px;
|
||||
margin: auto;
|
||||
text-align: center;
|
||||
padding: 5px;
|
||||
i {
|
||||
font-size: 22px;
|
||||
margin: 5px;
|
||||
}
|
||||
}
|
||||
a:hover {
|
||||
background-color: $text-color;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.hide{
|
||||
display: block;
|
||||
@media (min-width: $min-tablet) {
|
||||
a {
|
||||
width: 130px;
|
||||
i {
|
||||
font-size: unset;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (min-width: $min-desktop) {
|
||||
a {
|
||||
width: 150px;
|
||||
}
|
||||
}
|
||||
|
||||
</style>
|
||||
37
src/elements/Skills copy.svelte
Normal file
@@ -0,0 +1,37 @@
|
||||
<script lang="ts"></script>
|
||||
|
||||
<div>
|
||||
Hello
|
||||
<div>
|
||||
<h4>HTML</h4>
|
||||
<div class="round_base">
|
||||
<div class="inside"><div>percentage</div></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<style lang="scss">
|
||||
.round_base {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
background-color: yellow;
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
outline: 0.1px solid black;
|
||||
background-image: linear-gradient(to right, #000000 2px, blue 100%);
|
||||
}
|
||||
.inside {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
background-color: white;
|
||||
border-radius: 50%;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
outline: 0.1px solid black;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
</style>
|
||||
37
src/elements/Skills.svelte
Normal file
@@ -0,0 +1,37 @@
|
||||
<script lang="ts"></script>
|
||||
|
||||
<div>
|
||||
<div class="round_base">
|
||||
<div class="inside"><p>HTML</p></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<style lang="scss">
|
||||
p {
|
||||
font-weight: 600;
|
||||
}
|
||||
.round_base {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
outline: 0.1px solid black;
|
||||
background-image: linear-gradient(to right, red 5px 5px, black 5px 5px, red 1px);
|
||||
// background-size: 1px 20px;
|
||||
// background-repeat: no-repeat;
|
||||
}
|
||||
.inside {
|
||||
width: 70px;
|
||||
height: 70px;
|
||||
// background-color: white;
|
||||
border-radius: 50%;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
outline: 0.1px solid black;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
</style>
|
||||
@@ -1,84 +1,64 @@
|
||||
<script lang="ts">
|
||||
import MarkdownIt from 'markdown-it'
|
||||
import MarkdownIt from 'markdown-it';
|
||||
const md = new MarkdownIt({
|
||||
html:true,
|
||||
xhtmlOut:true,
|
||||
typographer: true,
|
||||
html: true,
|
||||
xhtmlOut: true,
|
||||
typographer: true
|
||||
});
|
||||
import data from '../model/training.json'
|
||||
import data from '../model/training.json';
|
||||
import type { Schema } from 'src/model/job';
|
||||
export let currentLanguage = 'it'
|
||||
const training:Schema[] = data as Schema[];
|
||||
export let currentLanguage = 'it';
|
||||
const training: Schema[] = data as Schema[];
|
||||
</script>
|
||||
<div class="trainingContainer">
|
||||
{#each training as school }
|
||||
|
||||
<div class="training">
|
||||
{#each training as school}
|
||||
<div class="element">
|
||||
<img src="{school.images[0]}" alt="school logo" />
|
||||
<img src={school.images[0]} alt="school logo" />
|
||||
<div>
|
||||
<h4>{school.title[currentLanguage]}</h4>
|
||||
<h3>{school.title[currentLanguage]}</h3>
|
||||
<p>{school.content[currentLanguage]}</p>
|
||||
<p>{school.year.start} - {school.year.end}</p>
|
||||
</div>
|
||||
</div>
|
||||
{/each}
|
||||
</div>
|
||||
|
||||
<style lang="scss">
|
||||
@import './static/colors.scss';
|
||||
.trainingContainer{
|
||||
margin: auto;
|
||||
background-color:$navajo-white;
|
||||
.training {
|
||||
padding: 10px;
|
||||
}
|
||||
@import '../app.scss';
|
||||
.element {
|
||||
border-radius: $default-border-radius;
|
||||
background-color: white;
|
||||
padding: 45px;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
border-radius: 10px;
|
||||
width: 90%;
|
||||
border-radius: 10px;
|
||||
box-shadow: -12px 26px 25px -14px $rich-black-fogra-29;
|
||||
-webkit-box-shadow: -12px 26px 25px -14px $rich-black-fogra-29;
|
||||
-moz-box-shadow: -12px 26px 25px -14px $rich-black-fogra-29;
|
||||
padding: 1vh;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
align-content: center;
|
||||
margin-top: 30px;
|
||||
img {
|
||||
max-width: 100%;
|
||||
max-height: 150px;
|
||||
object-fit: scale-down;
|
||||
}
|
||||
|
||||
.element{
|
||||
background-color: $cultured;
|
||||
text-align: justify;
|
||||
display: flex;
|
||||
align-items: center ;
|
||||
width: 98%;
|
||||
border-radius: 10px;
|
||||
margin-bottom: 1vh;
|
||||
padding: 1vh;
|
||||
background-color: $cultured;
|
||||
border-style: solid;
|
||||
border-width: 0.1px;
|
||||
}
|
||||
|
||||
.element:last-child{
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
.element>img{
|
||||
max-width: 35%;
|
||||
div {
|
||||
width: 80%;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.element>div{
|
||||
max-width: 50%;
|
||||
margin-left: auto;
|
||||
justify-self: end;
|
||||
}
|
||||
|
||||
.element>div>p{
|
||||
text-align: center;
|
||||
overflow-wrap: break-word;
|
||||
text-align: justify;
|
||||
@media (min-width: $min-tablet) {
|
||||
.element {
|
||||
flex-direction: row;
|
||||
div {
|
||||
width: 50%;
|
||||
margin-right: 0;
|
||||
}
|
||||
img {
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 600px) {
|
||||
.trainingContainer{
|
||||
display: flex;
|
||||
height: auto;
|
||||
max-width: $cv-max-width;
|
||||
width: 80vw;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
5
src/model/job.d.ts
vendored
@@ -1,11 +1,12 @@
|
||||
/* tslint:disable */
|
||||
/**
|
||||
* This file was automatically generated by json-schema-to-TypeScript.
|
||||
* This file was automatically generated by json-schema-to-typescript.
|
||||
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
||||
* and run json-schema-to-TypeScript to regenerate this file.
|
||||
* and run json-schema-to-typescript to regenerate this file.
|
||||
*/
|
||||
|
||||
export interface Schema {
|
||||
id?: string;
|
||||
year: {
|
||||
start: string;
|
||||
end: string;
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"Docker",
|
||||
"AWS"
|
||||
],
|
||||
"images":["/ALTEN.jpg"]
|
||||
"images":["/ALTEN.webp"]
|
||||
},
|
||||
{
|
||||
"year": {
|
||||
@@ -35,8 +35,10 @@
|
||||
},
|
||||
"title": {"en":"Jatus.tech my start-up","it":"La mia start-up Jatus.tech"},
|
||||
"content": {
|
||||
"en":"Through the 2021, I've worked to begin my independent activity base on my idea of business. To do so, I learnt different practices and filled many roles:<div style=\"margin-left: -25px;\">\n- Create a work's infrastructure, mainly create a centralized resource on the server:\n - Manage the **GNU\/Linux** server with \"Unraid\" as distribution.\n - Manage all the services using **Docker**:\n - **GitLab**, with the runner for CI\/CD, other than the software repositories I managed to setup:\n - package **npm** repository\n - **Docker** repository\n - **NginxProxyManager** to handle the public services in reverse proxy\n - **SonarQube** to automatically verify the software quality\n - Manage all the virtual machines to develop and deploy software in the staging environment\n - Project and develop the software, main activity of this endeavour:\n - Project the software architecture\n - Project the database\n - Implement the software based on the architecture:\n - Back-end **TypeScript** on **AWS-Lambda** platform with **Serverless framework**\n - Front-end in **TypeScript** with **Nativescript** framework\n - Implement the database architecture with **MongoDB**\n - Create a Proof of Concept of the application\n - Project and develop **CI\/CD** solution for the product:\n - Create pipelines for the CI\/CD process in the **GitLab** environment\n - Create **Docker files** to perform the unit test and compilation of the source code in the repositories.</div>",
|
||||
"it":"Nel corso del 2021 ho lavorato, per avviare una attività indipendente che si basa su una mia idea di app. Per far ciò, durante questo periodo ho dovuto ricoprire diversi ruoli e svolgere diverse mansioni:<div style=\"margin-left: -25px;\">\n- Creare un'infrastruttura di lavoro, un server dove centralizzare le risorse, nello specifico:\n - Gestire il server **GNU\/Linux** con la distribuzione *prosumer* Unraid..\n - Gestire i vari servizi in container **Docker**:\n - **GitLab** con il suo runner per le pipeline **CI/CD**:\n - *repository* di pacchetti **npm** \n - *repository* di immagini **Docker**\n - **NginxProxyManager** per la gestione dei servizi pubblici in reverse proxy\n - **SonarQube** per la verifica automatica della qualità del codice\n - Gestione di macchine virtuali per lo sviluppo di codice ma anche come *staging area* per testare le applicazioni in un ambiente *production like*\n - Progettare e sviluppare il software, focus di questa attività:\n - Progettare l'architettura del software\n - Progettare il database\n - Implementare l'architettura:\n - Back-end in **TypeScript** su piattaforma **AWS-Lambda** con **Serveless framework**\n - Front-end in app *cross-platform* in **TypeScript** con **Nativescript**\n - Implementare l'architettura di database in **MongoDB**\n - Creare un *proof of concept* dell'applicazione.\n - Progettare e sviluppare soluzioni di **CI\/CD** legate al prodotto:\n - Creare pipeline automatiche in **GitLab** con riferimento al \"versionamento\" interno\n - Creare Docker-file con l'ambiente di compilazione da utilizzare con le pipeline automatiche.</div>"
|
||||
"en":"In 2021, I worked to open a start-up with an app idea.\n To do so, I learned a lot of different skills, including how to set up a server with all my services running in **Docker**, set up a **GitLab** server, **design and build** an application infrastructure, and set up a private registry for **npm** and **docker images**.\n Furthermore, I configured all the **automation pipelines** to streamline the software distribution in virtualized environments and build the application **proof of concept** to demo to potential customers.",
|
||||
"it":"Nel corso del 2021 ho lavorato, per avviare una attività indipendente che si basa su una mia idea di servizio. Per far ciò, durante questo periodo ho imparato a creare un'infrastruttura di lavoro, su un server **GNU\/Linux** dove centralizzare le risorse con **GitLab** in container **Docker**.\n Per semplificare la distribuzione di elementi di sviluppo ho integrato un *repository* privato di pacchetti **npm** e immagini **Docker**. Oltre alle mansioni da sistemista e devops ho progettato e scritto il **Proof of concept** del mio servizio per dimostrarlo a potenziali clienti"
|
||||
"en":"In 2021, I worked to open a start-up with an app idea.\nTo do so, I acquired skills in design and developing a software solution for the problem. I learnt how to set up a **CI/CD** pipeline with **Docker** and **Gitlab** and took confidence in **serverless** technologies like AWS.",
|
||||
"it":"Nel corso del 2021 ho lavorato per avviare una mia attività indipendente, basata su un’idea per una app che ritenevo, e ritengo, fattibile. In questo periodo ho dovuto ricoprire diversi ruoli per portar avanti quest’iniziativa. Di conseguenza ho imparato a svolgere le mansioni di analista e architetto, **devops** e sviluppo. \n In particolare, ho acquisito dimestichezza con i sistemi di **CI/CD** basati su **Docker** e nell’uso di tecnologie **serverless**."
|
||||
},
|
||||
"collaborators": [],
|
||||
"languages": [
|
||||
@@ -54,7 +56,7 @@
|
||||
"GitLab",
|
||||
"Nativescript"
|
||||
],
|
||||
"images":["/logo-jatus-tech.png"]
|
||||
"images":["/logo-jatus-tech.webp"]
|
||||
},
|
||||
{
|
||||
"year": {
|
||||
@@ -78,7 +80,7 @@
|
||||
"Nuxt",
|
||||
"Docker"
|
||||
],
|
||||
"images":["/logo-athesys.png"]
|
||||
"images":["/logo-athesys.webp"]
|
||||
},
|
||||
{
|
||||
"year": {
|
||||
@@ -99,7 +101,7 @@
|
||||
"Composer",
|
||||
"Docker"
|
||||
],
|
||||
"images":["/alternative-studio.png"]
|
||||
"images":["/alternative-studio.webp"]
|
||||
},
|
||||
{
|
||||
"year": {
|
||||
@@ -108,12 +110,12 @@
|
||||
},
|
||||
"title": {"en":"ICT office's assistant","it":"Assistente dell'ufficio ICT "},
|
||||
"content": {
|
||||
"en":"I applied to this position, in Saxon Hill Academy, through the European project Leonardo which provided accommodation for the stay, an English course and a workplace mainly for practices the language skill. In Saxon Hill Academy, my responsibilities were:<div style=\"margin-left: -25px;\">\n - Maintenance of administration's computers.\n - Maintenance of students' computers.\n - Make the sensorial room usable.</div>",
|
||||
"it":"Ho avuto l'opportunità di lavorare in questo ambiente grazie al progetto europeo Leonardo. Questo progetto di 4 settimane si occupava di fornire agli studenti tutto il necessario tra vitto e alloggio, prevedeva, inoltre, un corso di inglese e un luogo di lavoro dove fare principalmente pratica con la lingua. In questo contesto sono stato assegnato a Saxon Hill Academy dove ho svolto le seguenti mansioni:<div style=\"margin-left: -25px;\">\n - Manutenzione dei computer della segreteria\n - Manutenzione dei computer degli studenti \n - Rendere operativa la \"sensiorial room\"</div>"
|
||||
"en":"I applied to this position, in Saxon Hill Academy, through the European project Leonardo which provided accommodation for the stay, an English course and a workplace mainly for practices the language skill. In Saxon Hill Academy, my responsibilities were:\n - Maintenance of administration's computers.\n - Maintenance of students' computers.\n - Make the sensorial room usable.",
|
||||
"it":"Ho avuto l'opportunità di lavorare in questo ambiente grazie al progetto europeo Leonardo. Questo progetto di 4 settimane si occupava di fornire agli studenti tutto il necessario tra vitto e alloggio, prevedeva, inoltre, un corso di inglese e un luogo di lavoro dove fare principalmente pratica con la lingua. In questo contesto sono stato assegnato a Saxon Hill Academy dove ho svolto le seguenti mansioni:\n - Manutenzione dei computer della segreteria\n - Manutenzione dei computer degli studenti \n - Rendere operativa la \"sensiorial room\""
|
||||
},
|
||||
"collaborators": [],
|
||||
"languages": [],
|
||||
"tecnologies": [],
|
||||
"images":["/saxonhilllogo.jpg"]
|
||||
"images":["/saxonhilllogo.webp"]
|
||||
}
|
||||
]
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
"Svelte",
|
||||
"Node.js"
|
||||
],
|
||||
"images":["/webpage.png"]
|
||||
"images":["/webpage.webp"]
|
||||
},
|
||||
{
|
||||
"year":{
|
||||
@@ -31,7 +31,7 @@
|
||||
"collaborators":[],
|
||||
"languages":["TypeScript"],
|
||||
"tecnologies":["Node.js"],
|
||||
"images":[]
|
||||
"images":["./DGCServerVerifier.webp"]
|
||||
},
|
||||
{
|
||||
"year": {
|
||||
@@ -50,7 +50,7 @@
|
||||
"tecnologies": [
|
||||
"QMK"
|
||||
],
|
||||
"images":["/custom-keyboard.jpg"]
|
||||
"images":["/custom-keyboard.webp"]
|
||||
},
|
||||
{
|
||||
"year":{
|
||||
@@ -64,7 +64,7 @@
|
||||
"collaborators":[],
|
||||
"languages":["bash","python"],
|
||||
"tecnologies":["raspberry"],
|
||||
"images":["/3dprinter.jpg"]
|
||||
"images":["/3dprinter.webp"]
|
||||
},{
|
||||
"year":{
|
||||
"start":"2021-09-15",
|
||||
@@ -77,7 +77,7 @@
|
||||
"collaborators":[],
|
||||
"languages":["YAML"],
|
||||
"tecnologies":["Docker","Unraid","GNU/Linux"],
|
||||
"images":[]
|
||||
"images":["./unraid.webp"]
|
||||
},
|
||||
{
|
||||
"year":{
|
||||
@@ -91,7 +91,7 @@
|
||||
"collaborators":[],
|
||||
"languages":[],
|
||||
"tecnologies":[],
|
||||
"images":["/workstation.jpg"]
|
||||
"images":["/workstation.webp"]
|
||||
},
|
||||
{
|
||||
"year":{
|
||||
@@ -105,7 +105,7 @@
|
||||
"collaborators":[{"name":"Gezim","surname":"Cikaqi","ref":"https://www.linkedin.com/in/gezimcikaqi/"},{"name":"Gabriel","surname":"Ciulei","ref":"https://www.linkedin.com/in/gabriel-ciulei/"},{"name":"Simone","surname":"Franconetti","ref":"https://www.linkedin.com/in/simone-franconetti-2b48b4147/"},{"name":"Giovanni","surname":"Incalza","ref":"https://www.linkedin.com/in/giovanni-incalza/"},{"name":"Nicola","surname":"Salvadore","ref":"https://www.linkedin.com/in/nicola-salvadore-02b015210/"},{"name":"Paola","surname":"Trevisan","ref":"https://www.linkedin.com/in/paola-trevisan-166891113/"}],
|
||||
"languages":["TypeScript","Solidity","YAML"],
|
||||
"tecnologies":["Node.js","AWS Lambda","Docker","GitHub Action","Ethereum"],
|
||||
"images":[]
|
||||
"images":["./tenners.webp"]
|
||||
},
|
||||
{
|
||||
"year":{
|
||||
@@ -119,7 +119,7 @@
|
||||
"collaborators":[],
|
||||
"languages":["bash"],
|
||||
"tecnologies":["Docker","GitHub Action"],
|
||||
"images":[]
|
||||
"images":["./LatexMulticompiler.webp"]
|
||||
},
|
||||
{
|
||||
"year":{
|
||||
@@ -133,7 +133,7 @@
|
||||
"collaborators":[],
|
||||
"languages":["bash"],
|
||||
"tecnologies":["Docker","GitHub Action"],
|
||||
"images":[]
|
||||
"images":["/spellCheck.webp"]
|
||||
},
|
||||
{
|
||||
"year":{
|
||||
@@ -147,7 +147,7 @@
|
||||
"collaborators":[],
|
||||
"languages":["C++"],
|
||||
"tecnologies":["Qt"],
|
||||
"images":["/QContainer.png"]
|
||||
"images":["/QContainer.webp"]
|
||||
},
|
||||
{
|
||||
"year":{
|
||||
@@ -160,7 +160,7 @@
|
||||
"collaborators":[{"name":"Giuseppe Vito","surname":"Bitetti","ref":"https://www.linkedin.com/in/giuseppe-vito-bitetti-587751200"}, {"name":"Enrico","surname":"Buratto","ref":"https://www.linkedin.com/in/enrico-buratto-04104b151"},{"name":"Mariano","surname":"Sciacco","ref":"https://www.linkedin.com/in/marianosciacco/"}],
|
||||
"languages":["PHP","SQL"],
|
||||
"tecnologies":["Apache","MariaDB"],
|
||||
"images":["/techweb.png"]
|
||||
"images":["/techweb.webp"]
|
||||
},
|
||||
{
|
||||
"year":{
|
||||
@@ -174,6 +174,6 @@
|
||||
"collaborators":[{"name":"Mariano","surname":"Sciacco","ref":"https://www.linkedin.com/in/marianosciacco/"}],
|
||||
"languages":["C++","SWL","ANTLR grammar"],
|
||||
"tecnologies":["ANTLR"],
|
||||
"images":[]
|
||||
"images":["./SWL.webp"]
|
||||
}
|
||||
]
|
||||
|
||||
@@ -2,6 +2,9 @@
|
||||
"$schema": "http://json-schema.org/draft-04/schema#",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"year": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
"collaborators": [],
|
||||
"languages": [],
|
||||
"tecnologies": [],
|
||||
"images":["unipd-universita-di-padova.png"]
|
||||
"images":["unipd-universita-di-padova.webp"]
|
||||
},
|
||||
{
|
||||
"year": {
|
||||
@@ -24,6 +24,6 @@
|
||||
"collaborators": [],
|
||||
"languages": [],
|
||||
"tecnologies": [],
|
||||
"images":["logoSeveri.png"]
|
||||
"images":["logoSeveri.webp"]
|
||||
}
|
||||
]
|
||||
|
||||
124
src/routes/blog/[post].svelte
Normal file
@@ -0,0 +1,124 @@
|
||||
<script lang="ts">
|
||||
import { MetaTags } from 'svelte-meta-tags';
|
||||
import Menu from '$elem/Menu.svelte';
|
||||
let currentLanguage: string = 'it';
|
||||
import { page } from '$app/stores';
|
||||
console.log($page)
|
||||
</script>
|
||||
|
||||
<MetaTags
|
||||
title="Gianmarco Pettinato"
|
||||
description="This is the Gianmarco's portfolio site"
|
||||
canonical="https://pettinato.eu/"
|
||||
openGraph={{
|
||||
url: 'https://pettinato.eu/',
|
||||
title: 'Gianmarco Pettinato',
|
||||
description: "This is the Gianmarco's portfolio site",
|
||||
images: [
|
||||
{
|
||||
url: 'https://www.example.ie/og-image-01.jpg',
|
||||
width: 800,
|
||||
height: 600,
|
||||
alt: 'Og Image Alt'
|
||||
},
|
||||
{
|
||||
url: 'https://www.example.ie/og-image-02.jpg',
|
||||
width: 900,
|
||||
height: 800,
|
||||
alt: 'Og Image Alt Second'
|
||||
},
|
||||
{ url: 'https://www.example.ie/og-image-03.jpg' },
|
||||
{ url: 'https://www.example.ie/og-image-04.jpg' }
|
||||
],
|
||||
site_name: 'Gianmarco Pettinato Portfolio'
|
||||
}}
|
||||
twitter={{
|
||||
handle: '@jatus_93',
|
||||
site: '@jatus_93',
|
||||
cardType: 'summary',
|
||||
title: 'Gianmarco Pettinato Portfolio',
|
||||
description: "This is the Gianmarco's portfolio site",
|
||||
image: 'https://pettinato.eu/profile_pic.webp',
|
||||
imageAlt: 'Gianmarco Photo'
|
||||
}}
|
||||
/>
|
||||
|
||||
<main>
|
||||
<!-- svelte-ignore a11y-invalid-attribute -->
|
||||
<div class="language-selector" id="language-selector">
|
||||
<button
|
||||
class="custom-button {currentLanguage == 'it' ? 'custom-button-active' : ''}"
|
||||
on:click={() => {
|
||||
currentLanguage = 'it';
|
||||
}}>it</button
|
||||
>
|
||||
<button
|
||||
class="custom-button {currentLanguage == 'en' ? 'custom-button-active' : ''}"
|
||||
on:click={() => {
|
||||
currentLanguage = 'en';
|
||||
}}>en</button
|
||||
>
|
||||
</div>
|
||||
|
||||
<div class="menu">
|
||||
<Menu {currentLanguage} />
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<style lang="scss">
|
||||
@import '../../app.scss';
|
||||
.language-selector {
|
||||
right: 0;
|
||||
height: 30px;
|
||||
text-align: center;
|
||||
text-transform: uppercase;
|
||||
padding-top: 10px;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: end;
|
||||
position: absolute;
|
||||
z-index: 999;
|
||||
@media (max-width: $min-desktop) {
|
||||
width: 100%;
|
||||
position: unset;
|
||||
padding-bottom: 10px;
|
||||
background-color: $basecolor2;
|
||||
}
|
||||
}
|
||||
.menu {
|
||||
background-color: $basecolor2;
|
||||
position: sticky;
|
||||
position: -webkit-sticky;
|
||||
top: 0px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
padding: 10px;
|
||||
border-bottom: solid #999 1px;
|
||||
}
|
||||
|
||||
.custom-button {
|
||||
border: 0;
|
||||
background: none;
|
||||
box-shadow: none;
|
||||
border-radius: $default-border-radius;
|
||||
border: solid $button-border-color 1px;
|
||||
width: 40px;
|
||||
cursor: pointer;
|
||||
margin-right: 5px;
|
||||
}
|
||||
.custom-button:hover {
|
||||
background-color: $text-color;
|
||||
color: white;
|
||||
}
|
||||
.custom-button-active {
|
||||
cursor: unset;
|
||||
background-color: $text-color;
|
||||
color: white;
|
||||
}
|
||||
@media (max-width: $min-tablet) {
|
||||
.custom-button {
|
||||
font-size: large;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
132
src/routes/blog/index.svelte
Normal file
@@ -0,0 +1,132 @@
|
||||
<script lang="ts">
|
||||
import { MetaTags } from 'svelte-meta-tags';
|
||||
import Menu from '$elem/Menu.svelte';
|
||||
import Jobs from '$elem/Jobs.svelte';
|
||||
let currentLanguage: string = 'it';
|
||||
let isBlogContainer = true;
|
||||
import Data_portfolio from '../../model/portfolio.json';
|
||||
import type { Schema } from 'src/model/job';
|
||||
let jobs: Schema[] = Data_portfolio as Schema[];
|
||||
let title = { it: 'I miei articoli', en: 'my blog posts' };
|
||||
</script>
|
||||
|
||||
<MetaTags
|
||||
title="Gianmarco Pettinato"
|
||||
description="This is the Gianmarco's portfolio site"
|
||||
canonical="https://pettinato.eu/"
|
||||
openGraph={{
|
||||
url: 'https://pettinato.eu/',
|
||||
title: 'Gianmarco Pettinato',
|
||||
description: "This is the Gianmarco's portfolio site",
|
||||
images: [
|
||||
{
|
||||
url: 'https://www.example.ie/og-image-01.jpg',
|
||||
width: 800,
|
||||
height: 600,
|
||||
alt: 'Og Image Alt'
|
||||
},
|
||||
{
|
||||
url: 'https://www.example.ie/og-image-02.jpg',
|
||||
width: 900,
|
||||
height: 800,
|
||||
alt: 'Og Image Alt Second'
|
||||
},
|
||||
{ url: 'https://www.example.ie/og-image-03.jpg' },
|
||||
{ url: 'https://www.example.ie/og-image-04.jpg' }
|
||||
],
|
||||
site_name: 'Gianmarco Pettinato Portfolio'
|
||||
}}
|
||||
twitter={{
|
||||
handle: '@jatus_93',
|
||||
site: '@jatus_93',
|
||||
cardType: 'summary',
|
||||
title: 'Gianmarco Pettinato Portfolio',
|
||||
description: "This is the Gianmarco's portfolio site",
|
||||
image: 'https://pettinato.eu/profile_pic.webp',
|
||||
imageAlt: 'Gianmarco Photo'
|
||||
}}
|
||||
/>
|
||||
|
||||
<main>
|
||||
<!-- svelte-ignore a11y-invalid-attribute -->
|
||||
<div class="language-selector" id="language-selector">
|
||||
<button
|
||||
class="custom-button {currentLanguage == 'it' ? 'custom-button-active' : ''}"
|
||||
on:click={() => {
|
||||
currentLanguage = 'it';
|
||||
}}>it</button
|
||||
>
|
||||
<button
|
||||
class="custom-button {currentLanguage == 'en' ? 'custom-button-active' : ''}"
|
||||
on:click={() => {
|
||||
currentLanguage = 'en';
|
||||
}}>en</button
|
||||
>
|
||||
</div>
|
||||
|
||||
<div class="menu">
|
||||
<Menu {currentLanguage} />
|
||||
</div>
|
||||
<div id="portfolio" class="default">
|
||||
<h2>{title[currentLanguage]}</h2>
|
||||
<Jobs {jobs} {currentLanguage} {isBlogContainer} />
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<style lang="scss">
|
||||
@import '../../app.scss';
|
||||
.language-selector {
|
||||
right: 0;
|
||||
height: 30px;
|
||||
text-align: center;
|
||||
text-transform: uppercase;
|
||||
padding-top: 10px;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: end;
|
||||
position: absolute;
|
||||
z-index: 999;
|
||||
@media (max-width: $min-desktop) {
|
||||
width: 100%;
|
||||
position: unset;
|
||||
padding-bottom: 10px;
|
||||
background-color: $basecolor2;
|
||||
}
|
||||
}
|
||||
.menu {
|
||||
background-color: $basecolor2;
|
||||
position: sticky;
|
||||
position: -webkit-sticky;
|
||||
top: 0px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
padding: 10px;
|
||||
border-bottom: solid #999 1px;
|
||||
}
|
||||
|
||||
.custom-button {
|
||||
border: 0;
|
||||
background: none;
|
||||
box-shadow: none;
|
||||
border-radius: $default-border-radius;
|
||||
border: solid $button-border-color 1px;
|
||||
width: 40px;
|
||||
cursor: pointer;
|
||||
margin-right: 5px;
|
||||
}
|
||||
.custom-button:hover {
|
||||
background-color: $text-color;
|
||||
color: white;
|
||||
}
|
||||
.custom-button-active {
|
||||
cursor: unset;
|
||||
background-color: $text-color;
|
||||
color: white;
|
||||
}
|
||||
@media (max-width: $min-tablet) {
|
||||
.custom-button {
|
||||
font-size: large;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@@ -1,90 +1,157 @@
|
||||
<script lang="ts">
|
||||
import AboutMe from "$elem/AboutMe.svelte";
|
||||
import Jobs from "$elem/Jobs.svelte";
|
||||
import Menu from "$elem/Menu.svelte";
|
||||
import Training from '$elem/Training.svelte'
|
||||
import Contacts from '$elem/Contacts.svelte'
|
||||
import { MetaTags } from 'svelte-meta-tags';
|
||||
import AboutMe from '$elem/AboutMe.svelte';
|
||||
import Jobs from '$elem/Jobs.svelte';
|
||||
import Menu from '$elem/Menu.svelte';
|
||||
import Training from '$elem/Training.svelte';
|
||||
import Data_jobs from '../model/jobs.json';
|
||||
import Data_portfolio from '../model/portfolio.json';
|
||||
import type { Schema } from "src/model/job";
|
||||
let jobs:Schema[] = Data_jobs as Schema[];
|
||||
let portfolio:Schema[] = Data_portfolio as Schema[];
|
||||
let currentLanguage: string ='it';
|
||||
let titles = {home:{it:"Home",en:"Home"},
|
||||
job:{it:"Esperienze",en:"Experiences"},
|
||||
school:{it:"Formazione",en:"Training"},
|
||||
contacts:{it:"Contatti",en:"Contacts"},
|
||||
portfolio:{it:"Portfolio",en:"Portfolio"}}
|
||||
import type { Schema } from 'src/model/job';
|
||||
let jobs: Schema[] = Data_jobs as Schema[];
|
||||
let portfolio: Schema[] = Data_portfolio as Schema[];
|
||||
let currentLanguage: string = 'it';
|
||||
let titles = {
|
||||
home: {
|
||||
it: 'Gianmarco Pettinato',
|
||||
en: 'Gianmarco Pettinato'
|
||||
},
|
||||
job: { it: 'Esperienze', en: 'Experiences' },
|
||||
school: { it: 'Formazione', en: 'Training' },
|
||||
contacts: { it: 'Contatti', en: 'Contacts' },
|
||||
portfolio: { it: 'Portfolio', en: 'Portfolio' }
|
||||
};
|
||||
</script>
|
||||
<main class="maindiv">
|
||||
|
||||
<MetaTags
|
||||
title="Gianmarco Pettinato"
|
||||
description="This is the Gianmarco's portfolio site"
|
||||
canonical="https://pettinato.eu/"
|
||||
openGraph={{
|
||||
url: 'https://pettinato.eu/',
|
||||
title: 'Gianmarco Pettinato',
|
||||
description: "This is the Gianmarco's portfolio site",
|
||||
images: [
|
||||
{
|
||||
url: 'https://www.example.ie/og-image-01.jpg',
|
||||
width: 800,
|
||||
height: 600,
|
||||
alt: 'Og Image Alt'
|
||||
},
|
||||
{
|
||||
url: 'https://www.example.ie/og-image-02.jpg',
|
||||
width: 900,
|
||||
height: 800,
|
||||
alt: 'Og Image Alt Second'
|
||||
},
|
||||
{ url: 'https://www.example.ie/og-image-03.jpg' },
|
||||
{ url: 'https://www.example.ie/og-image-04.jpg' }
|
||||
],
|
||||
site_name: 'Gianmarco Pettinato Portfolio'
|
||||
}}
|
||||
twitter={{
|
||||
handle: '@jatus_93',
|
||||
site: '@jatus_93',
|
||||
cardType: 'summary',
|
||||
title: 'Gianmarco Pettinato Portfolio',
|
||||
description: "This is the Gianmarco's portfolio site",
|
||||
image: 'https://pettinato.eu/profile_pic.webp',
|
||||
imageAlt: 'Gianmarco Photo'
|
||||
}}
|
||||
/>
|
||||
|
||||
<main>
|
||||
<!-- svelte-ignore a11y-invalid-attribute -->
|
||||
<div class="language-selector" id="language-selector"> <a href="#" on:click={()=>{ currentLanguage = 'it'}}>IT</a> <a href="#" on:click={()=>{currentLanguage = 'en'}}>EN</a> </div>
|
||||
<div class="language-selector" id="language-selector">
|
||||
<button
|
||||
class="custom-button {currentLanguage == 'it' ? 'custom-button-active' : ''}"
|
||||
on:click={() => {
|
||||
currentLanguage = 'it';
|
||||
}}>it</button
|
||||
>
|
||||
<button
|
||||
class="custom-button {currentLanguage == 'en' ? 'custom-button-active' : ''}"
|
||||
on:click={() => {
|
||||
currentLanguage = 'en';
|
||||
}}>en</button
|
||||
>
|
||||
</div>
|
||||
|
||||
<div class="menu">
|
||||
<Menu {currentLanguage}/>
|
||||
<Menu {currentLanguage} />
|
||||
</div>
|
||||
<div class="about" id="home">
|
||||
<AboutMe {currentLanguage}/>
|
||||
<div id="home" class="default">
|
||||
<h1>{titles.home[currentLanguage]}</h1>
|
||||
<h2>Software developer</h2>
|
||||
<AboutMe {currentLanguage} />
|
||||
</div>
|
||||
<div class="content" id="jobs">
|
||||
<div id="jobs" class="default">
|
||||
<h2>{titles.job[currentLanguage]}</h2>
|
||||
<Jobs jobs={jobs} {currentLanguage}/>
|
||||
<Jobs {jobs} {currentLanguage} />
|
||||
</div>
|
||||
<div class="content" id="training">
|
||||
<div id="training" class="default">
|
||||
<h2>{titles.school[currentLanguage]}</h2>
|
||||
<Training {currentLanguage} />
|
||||
</div>
|
||||
<div class="content" id="portfolio">
|
||||
<div id="portfolio" class="default">
|
||||
<h2>{titles.portfolio[currentLanguage]}</h2>
|
||||
<Jobs jobs={portfolio} {currentLanguage}/>
|
||||
</div>
|
||||
<div class="content" id="contacts">
|
||||
<h2>{titles.contacts[currentLanguage]}</h2>
|
||||
<Contacts/>
|
||||
<Jobs jobs={portfolio} {currentLanguage} />
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<style lang="scss">
|
||||
@import "./static/colors.scss";
|
||||
.maindiv {
|
||||
color: $rich-black-fogra-29;
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
||||
}
|
||||
|
||||
@import '../app.scss';
|
||||
.language-selector {
|
||||
width: 100%;
|
||||
color: $rich-black-fogra-29;
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
background-color: $steel-blue;
|
||||
}
|
||||
|
||||
.language-selector > a, .language-selector > a:visited {
|
||||
text-decoration: none;
|
||||
color: $rich-black-fogra-29;
|
||||
font-size: 16px;
|
||||
margin-right: 20px ;
|
||||
}
|
||||
|
||||
.about{
|
||||
margin-top: 4vh;
|
||||
margin-bottom: 4vh;
|
||||
}
|
||||
.content{
|
||||
|
||||
margin-bottom: 4vh;
|
||||
}
|
||||
|
||||
h2{
|
||||
width: 100%;
|
||||
right: 0;
|
||||
height: 30px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.menu {
|
||||
text-transform: uppercase;
|
||||
padding-top: 10px;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: end;
|
||||
position: absolute;
|
||||
z-index: 999;
|
||||
@media (max-width: $min-desktop) {
|
||||
width: 100%;
|
||||
position: -webkit-sticky; /* Safari */
|
||||
position: unset;
|
||||
padding-bottom: 10px;
|
||||
background-color: $basecolor2;
|
||||
}
|
||||
}
|
||||
.menu {
|
||||
background-color: $basecolor2;
|
||||
position: sticky;
|
||||
bottom: 0;
|
||||
top: 0;
|
||||
position: -webkit-sticky;
|
||||
top: 0px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
padding: 10px;
|
||||
border-bottom: solid #999 1px;
|
||||
}
|
||||
|
||||
.custom-button {
|
||||
border: 0;
|
||||
background: none;
|
||||
box-shadow: none;
|
||||
border-radius: $default-border-radius;
|
||||
border: solid $button-border-color 1px;
|
||||
width: 40px;
|
||||
cursor: pointer;
|
||||
margin-right: 5px;
|
||||
}
|
||||
.custom-button:hover {
|
||||
background-color: $text-color;
|
||||
color: white;
|
||||
}
|
||||
.custom-button-active {
|
||||
cursor: unset;
|
||||
background-color: $text-color;
|
||||
color: white;
|
||||
}
|
||||
@media (max-width: $min-tablet) {
|
||||
.custom-button {
|
||||
font-size: large;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
Before Width: | Height: | Size: 306 KiB |
BIN
static/3dprinter.webp
Normal file
|
After Width: | Height: | Size: 111 KiB |
BIN
static/ALTEN.jpg
|
Before Width: | Height: | Size: 54 KiB |
BIN
static/ALTEN.webp
Normal file
|
After Width: | Height: | Size: 6.7 KiB |
BIN
static/DGCServerVerifier.webp
Normal file
|
After Width: | Height: | Size: 60 KiB |
BIN
static/LatexMulticompiler.webp
Normal file
|
After Width: | Height: | Size: 50 KiB |
|
Before Width: | Height: | Size: 28 KiB |
BIN
static/QContainer.webp
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
static/SWL.webp
Normal file
|
After Width: | Height: | Size: 23 KiB |
|
Before Width: | Height: | Size: 10 KiB |
BIN
static/alternative-studio.webp
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
18
static/blogPosts/2022-05-15.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"year": {
|
||||
"start": "2022-05-15",
|
||||
"end": ""
|
||||
},
|
||||
"title": {
|
||||
"en": "blog",
|
||||
"it": "Il blog"
|
||||
},
|
||||
"content": {
|
||||
"en": "Articolo di prova in inglese",
|
||||
"it": "Articolo di prova in italiano."
|
||||
},
|
||||
"collaborators": [],
|
||||
"languages": [],
|
||||
"tecnologies": [],
|
||||
"images": []
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
/* SCSS HEX */
|
||||
$cultured: #f2f2f2ff;
|
||||
$rich-black-fogra-29: #011627ff;
|
||||
: #011627ff;
|
||||
$navajo-white: #ffddadff;
|
||||
$middle-blue-green: #9ad5d3ff;
|
||||
$steel-blue: #3a7ca5ff;
|
||||
|
||||
|
Before Width: | Height: | Size: 305 KiB |
BIN
static/custom-keyboard.webp
Normal file
|
After Width: | Height: | Size: 108 KiB |
@@ -1,11 +0,0 @@
|
||||
|
||||
.box-with-shadow {
|
||||
background-color: $cultured;
|
||||
border-style: solid;
|
||||
border-width: 0.1px;
|
||||
border-color: $sonic-silver ;
|
||||
border-radius: 10px;
|
||||
box-shadow: -12px 26px 25px -14px $sonic-silver;
|
||||
-webkit-box-shadow: -12px 26px 25px -14px $sonic-silver;
|
||||
-moz-box-shadow: -12px 26px 25px -14px $sonic-silver;
|
||||
}
|
||||
BIN
static/favicon.webp
Normal file
|
After Width: | Height: | Size: 608 B |
|
Before Width: | Height: | Size: 7.4 KiB |
BIN
static/logo-athesys.webp
Normal file
|
After Width: | Height: | Size: 3.8 KiB |
|
Before Width: | Height: | Size: 52 KiB |
BIN
static/logo-jatus-tech.webp
Normal file
|
After Width: | Height: | Size: 4.7 KiB |
|
Before Width: | Height: | Size: 19 KiB |
BIN
static/logoSeveri.webp
Normal file
|
After Width: | Height: | Size: 3.4 KiB |
@@ -1,6 +1,6 @@
|
||||
body{
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background-color: #9ad5d3ff;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
|
Before Width: | Height: | Size: 20 KiB |
BIN
static/profile_pic.webp
Normal file
|
After Width: | Height: | Size: 9.2 KiB |
|
Before Width: | Height: | Size: 26 KiB |
BIN
static/saxonhilllogo.webp
Normal file
|
After Width: | Height: | Size: 6.7 KiB |
BIN
static/spellCheck.webp
Normal file
|
After Width: | Height: | Size: 34 KiB |
|
Before Width: | Height: | Size: 1.1 MiB |
BIN
static/techweb.webp
Normal file
|
After Width: | Height: | Size: 115 KiB |
BIN
static/tenners.webp
Normal file
|
After Width: | Height: | Size: 26 KiB |
|
Before Width: | Height: | Size: 31 KiB |
BIN
static/unipd-universita-di-padova.webp
Normal file
|
After Width: | Height: | Size: 92 KiB |
BIN
static/unraid.webp
Normal file
|
After Width: | Height: | Size: 8.9 KiB |
|
Before Width: | Height: | Size: 281 KiB |
BIN
static/webpage.webp
Normal file
|
After Width: | Height: | Size: 78 KiB |
|
Before Width: | Height: | Size: 233 KiB |
BIN
static/workstation.webp
Normal file
|
After Width: | Height: | Size: 75 KiB |
@@ -25,8 +25,8 @@
|
||||
"paths": {
|
||||
"$lib": ["src/lib"],
|
||||
"$lib/*": ["src/lib/*"],
|
||||
"$elem":["src/elements"],
|
||||
// "$model":["src/model"]
|
||||
"$elem/*":["src/elements/*"],
|
||||
"$model/*":["src/model/*"]
|
||||
}
|
||||
},
|
||||
"include": ["src/**/*.d.ts", "src/**/*.js", "src/**/*.ts", "src/**/*.svelte"]
|
||||
|
||||