FIX: added data folders.
This commit is contained in:
16
_data/home.yml
Normal file
16
_data/home.yml
Normal 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
151
_data/work.yml
Normal 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
23
experiences.html
Normal 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>
|
||||
Reference in New Issue
Block a user