diff --git a/404.html b/404.html index 82135d3..52a6b68 100644 --- a/404.html +++ b/404.html @@ -13,4 +13,4 @@ layout: default
- \ No newline at end of file + diff --git a/_data/home.yml b/_data/home.yml new file mode 100644 index 0000000..0bce9f3 --- /dev/null +++ b/_data/home.yml @@ -0,0 +1,16 @@ +welcome: + Hey! šŸ‘‹ I'm Max Hutz. + +status: + Software developer in New York. + +about: + I'm a passionate computer science student skilled in building responsive, + full-stack applications. I love learning from colleagues and teaching future + developers. I thrive where teamwork and creativity are key. + +email: + maximhutz@gmail.com + +featured: + [ malung, freshmanual, pollbuddy, rpi-crisis ] \ No newline at end of file diff --git a/_data/work.yml b/_data/work.yml new file mode 100644 index 0000000..96b2421 --- /dev/null +++ b/_data/work.yml @@ -0,0 +1,151 @@ +malung: + title: + Example + + subtitle: + Just A Test + + stack: + [ PHP, JS, CSS, HTML, Docker, MariaDB, Azure ] + + description: + Lorem Ipsum is simply dummy text of the printing and typesetting industry. + Lorem Ipsum has been the industry's standard dummy text ever since the + 1500s, when an unknown printer took a galley of type and scrambled it to + make a type specimen book. It has survived not only five centuries, but also + the leap into electronic typesetting, remaining essentially unchanged. + + outcomes: + - Lorem Ipsum is simply dummy text of the printing and typesetting industry. + + - Lorem Ipsum has been the industry's standard dummy text ever since the + 1500s, when an unknown printer took a galley of type and scrambled it to + make a type specimen book. + + - It has survived not only five centuries, but also the leap into electronic + typesetting, remaining essentially unchanged. + + image: + /res/avatar.svg + + link: + / + + color: + yellow + +#*----------------------------------------------------------------------------*# + +freshmanual: + title: + Example + + subtitle: + Just A Test + + stack: + [ PHP, JS, CSS, HTML, Docker, MariaDB, Azure ] + + description: + Lorem Ipsum is simply dummy text of the printing and typesetting industry. + Lorem Ipsum has been the industry's standard dummy text ever since the + 1500s, when an unknown printer took a galley of type and scrambled it to + make a type specimen book. It has survived not only five centuries, but also + the leap into electronic typesetting, remaining essentially unchanged. + + outcomes: + - Lorem Ipsum is simply dummy text of the printing and typesetting industry. + + - Lorem Ipsum has been the industry's standard dummy text ever since the + 1500s, when an unknown printer took a galley of type and scrambled it to + make a type specimen book. + + - It has survived not only five centuries, but also the leap into electronic + typesetting, remaining essentially unchanged. + + image: + /res/avatar.svg + + link: + / + + color: + blue + +#*----------------------------------------------------------------------------*# + +pollbuddy: + title: + Example + + subtitle: + Just A Test + + stack: + [ PHP, JS, CSS, HTML, Docker, MariaDB, Azure ] + + description: + Lorem Ipsum is simply dummy text of the printing and typesetting industry. + Lorem Ipsum has been the industry's standard dummy text ever since the + 1500s, when an unknown printer took a galley of type and scrambled it to + make a type specimen book. It has survived not only five centuries, but also + the leap into electronic typesetting, remaining essentially unchanged. + + outcomes: + - Lorem Ipsum is simply dummy text of the printing and typesetting industry. + + - Lorem Ipsum has been the industry's standard dummy text ever since the + 1500s, when an unknown printer took a galley of type and scrambled it to + make a type specimen book. + + - It has survived not only five centuries, but also the leap into electronic + typesetting, remaining essentially unchanged. + + image: + /res/avatar.svg + + link: + / + + color: + green + +#*----------------------------------------------------------------------------*# + +rpi-crisis: + title: + Example + + subtitle: + Just A Test + + stack: + [ PHP, JS, CSS, HTML, Docker, MariaDB, Azure ] + + description: + Lorem Ipsum is simply dummy text of the printing and typesetting industry. + Lorem Ipsum has been the industry's standard dummy text ever since the + 1500s, when an unknown printer took a galley of type and scrambled it to + make a type specimen book. It has survived not only five centuries, but also + the leap into electronic typesetting, remaining essentially unchanged. + + outcomes: + - Lorem Ipsum is simply dummy text of the printing and typesetting industry. + + - Lorem Ipsum has been the industry's standard dummy text ever since the + 1500s, when an unknown printer took a galley of type and scrambled it to + make a type specimen book. + + - It has survived not only five centuries, but also the leap into electronic + typesetting, remaining essentially unchanged. + + image: + /res/avatar.svg + + link: + / + + color: + red + +#*----------------------------------------------------------------------------*# \ No newline at end of file diff --git a/_includes/header.html b/_includes/header.html index 8801f18..aa1e3f7 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -3,10 +3,10 @@
MAX HUTZ
- Experience + Experience Resume Contact - + @@ -22,7 +22,7 @@ - Experience + Experience Resume Contact diff --git a/experiences.html b/experiences.html new file mode 100644 index 0000000..ef22934 --- /dev/null +++ b/experiences.html @@ -0,0 +1,23 @@ +--- +title: Experiences +description: A list of past and current work and projects from Maxim Voldman Hutz. +layout: default +--- + +{% assign work = site.data.work %} + +
+

My experiences.

+
+ {% for item in work %} + {% assign id = item[0] %} + {% assign data = item[1] %} + + +
+ +
+ {% endfor %} +
+
\ No newline at end of file diff --git a/index.html b/index.html index 404340c..bd5fd5a 100644 --- a/index.html +++ b/index.html @@ -4,22 +4,21 @@ description: This is the home page of Maxim Voldman Hutz's personal website. layout: default --- +{% assign home = site.data.home %} +{% assign work = site.data.work %} +
-

Hey! šŸ‘‹ I'm Max Hutz.

- Software engineer in New York. +

{{ home.welcome }}

+ {{ home.status }}
-

- I’m a passionate computer science student skilled in building responsive, - full-stack applications. I love learning from colleagues and teaching future - developers. I thrive where teamwork and creativity are key. -

+

{{ home.about }}


+ +

Worked on:


- View all experiences. + View all experiences.
\ No newline at end of file diff --git a/styles/default.css b/styles/default.css index 54b66dc..44f9b34 100644 --- a/styles/default.css +++ b/styles/default.css @@ -1,5 +1,7 @@ html { scroll-behavior: smooth; + background-image: linear-gradient(#0003 0% 50%, #0000 50% 100%), + linear-gradient(var(--dark) 0% 50%, var(--light) 50% 100%); } body { @@ -159,7 +161,7 @@ nav { /*----------------------------------------------------------------------------*/ #projects { - margin: 30px auto; + padding: 30px auto; position: relative; display: flex; flex-direction: column;