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
16 lines
357 B
HTML
16 lines
357 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] %}
|
|
<tr>
|
|
<th><a href="{{pid.url}}">{{urlparts[2]}}</a></th>
|
|
<td>{{pid.title}}</td>
|
|
</tr>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</table>
|