FIX: added data folders.

This commit is contained in:
MajorDroolz
2023-01-04 02:35:10 -05:00
parent 875a80488c
commit 77991356f4
3 changed files with 190 additions and 0 deletions

16
_data/home.yml Normal file
View File

@@ -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 ]

151
_data/work.yml Normal file
View File

@@ -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
#*----------------------------------------------------------------------------*#

23
experiences.html Normal file
View File

@@ -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 %}
<section id="projects" class="dark back">
<h2>My experiences.</h2>
<div id="project-list">
{% for item in work %}
{% assign id = item[0] %}
{% assign data = item[1] %}
<a class="{{ data.color }} project-item shadow" href="/experience/{{ id }}">
<div class="space"></div>
<div class="nav-link project-link r-icon" data-i="arrow_right">{{ data.title }}: {{ data.subtitle }}
</div>
</a>
{% endfor %}
</div>
</section>