diff --git a/_includes/default.html b/_includes/default.html new file mode 100644 index 0000000..9ad323c --- /dev/null +++ b/_includes/default.html @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + {{ include.title }} ─ Max Hutz + + + {% include header.html %} + + {{ include.content }} + +
+ + {% include footer.html %} + + \ No newline at end of file diff --git a/_layouts/default.html b/_layouts/default.html index ed48d7f..3cd3826 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -1,32 +1 @@ - - - - - - - - - - - - - - - - - - - - - {{ page.title }} ─ Max Hutz - - - {% include header.html %} - - {{ content }} - -
- - {% include footer.html %} - - \ No newline at end of file +{% include default.html title=page.title content=content description=page.description %} \ No newline at end of file diff --git a/_layouts/experience.html b/_layouts/experience.html index 33c72c4..23a0b96 100644 --- a/_layouts/experience.html +++ b/_layouts/experience.html @@ -1,77 +1,54 @@ - - - - - - - +{% capture description %} + A description of work done by Maxim Voldman Hutz for {{page.title}}. +{% endcapture %} - +{% capture inner %} + {% assign malung = site.data.work[page.project_id] %} + {% assign techs = site.data.techs %} - - + + - - - - - - - - {{ page.title }} ─ Max Hutz - - - {% include header.html %} - - {% assign malung = site.data.work[page.project_id] %} - {% assign techs = site.data.techs %} - - - - -
- -
-
-

- {{malung.description}} -

-
-
    - {% for outcome in malung.outcomes %} -
  • {{outcome}}
  • - {% endfor %} -
- {% if malung.link %} - View {{malung.title}} +
+ +
+
+

+ {{malung.description}} +

+
+
    + {% for outcome in malung.outcomes %} +
  • {{outcome}}
  • + {% endfor %} +
+ {% if malung.link %} + View {{malung.title}} + {% endif %} +
+
+
+ {% if malung.image %} + Image of {{malung.title}} + {% else %} +

Image Not Available

{% endif %}
-
-
- {% if malung.image %} - Image of {{malung.title}} - {% else %} -

Image Not Available

- {% endif %} -
-
- {% for tech in malung.stack %} - {% assign data = techs[tech] %} - {{data.name}} - {% endfor %} -
+
+ {% for tech in malung.stack %} + {% assign data = techs[tech] %} + {{data.name}} + {% endfor %}
-
+
+
+{% endcapture %} -
- - {% include footer.html %} - - \ No newline at end of file +{% include default.html content=inner description=description title=page.title %} \ No newline at end of file