You've already forked pidcodes.github.com
mirror of
https://github.com/solokeys/pidcodes.github.com.git
synced 2026-03-11 17:14:52 -07:00
18 lines
497 B
HTML
18 lines
497 B
HTML
{% include data.html %}
|
|
<table>
|
|
<thead>
|
|
<tr><th>PID</th><th>Device</th></tr>
|
|
</thead>
|
|
{% for pid in pids %}
|
|
{% assign urlparts = pid.url|split:"/" %}
|
|
{% if include.vid == urlparts[1] %}
|
|
{% capture orgpath %}/org/{{pid.owner}}/{% endcapture %}
|
|
{% assign org = orgs|where:"url",orgpath|first %}
|
|
<tr>
|
|
<th><a href="{{pid.url}}">{{urlparts[2]|upcase}}</a></th>
|
|
<td>{{org.title}} {{pid.title}}</td>
|
|
</tr>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</table>
|