-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (22 loc) · 867 Bytes
/
Copy pathindex.html
File metadata and controls
24 lines (22 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
layout: page
title: Chris Hinstorff
tagline: Supporting tagline
---
<div class="projects">
<h1>Hi there. I'm Chris Hinstorff.</h1>
<p><a href="mailto:chris@chinstorff.com" target="_blank">chris@chinstorff.com</a></p>
<p><a href="https://www.linkedin.com/in/chinstorff/" target="_blank">linkedin.com/in/chinstorff</a></p>
<p><a href="https://github.com/chinstorff/" target="_blank">github.com/chinstorff</a></p>
<h2>Here are some things I've made.</h2>
{% for category in site.data.project_categories %}
{% if category.visibility == hidden %}
<h3>{{ category.name }}</h3>
{% for project in site.data.projects %}
{% if project.category == category.id and project.visibility == hidden %}
<p><a href="{{ project.URL }}">{{ project.name }}{{ project.name2 }}</a></p>
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
</div>