From 77991356f43ed3868959fcfbcd034328428e0c05 Mon Sep 17 00:00:00 2001 From: MajorDroolz Date: Wed, 4 Jan 2023 02:35:10 -0500 Subject: [PATCH] FIX: added data folders. --- _data/home.yml | 16 +++++ _data/work.yml | 151 +++++++++++++++++++++++++++++++++++++++++++++++ experiences.html | 23 ++++++++ 3 files changed, 190 insertions(+) create mode 100644 _data/home.yml create mode 100644 _data/work.yml create mode 100644 experiences.html 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/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