-
Notifications
You must be signed in to change notification settings - Fork 4
/
cad-models.html
32 lines (29 loc) · 1.28 KB
/
cad-models.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---
layout: default
title: CAD Models
---
<div class="container">
<p>We maintain a list of useful CAD models for building pinball machines. Not all of them a verified.
If you verified one of them please let us know in the
<a href="https://groups.google.com/forum/#!forum/mpf-users">MPF User Forum</a> and we will mark it
accordingly.
If you got additional models you want to share also let us know there.</p>
<h2>List of CAD Models</h2>
<ul>
{% for model in site.cad_models %}
<li><a href="{{ model.url | absolute_url }}">{{ model.name }} </a>{% if model.part_number %} - {{ model.part_number }}{% endif %}</li>
{% endfor %}
</ul>
<h2>CAD Models by Tags</h2>
{% assign tags = site.cad_models | map: 'tags' | join: ',' | split: ',' | uniq | sort %}
{% for tag in tags %}
<h3>{{ tag }}</h3>
<ul>
{% for model in site.cad_models %}
{% if model.tags contains tag %}
<li><a href="{{ model.url | absolute_url }}">{{ model.name }}</a>{% if model.part_number %} - {{ model.part_number }}{% endif %}</li>
{% endif %}
{% endfor %}
</ul>
{% endfor %}
</div>