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
* Remove errant .DS_Store file * Ignore .DS_Store * Create a list of organisations * Add an org list * Show number of PIDs per org * Fix HTML issue, sort orgs by title * Try and fix the PID count * Try and fix issues * Try again to fix issues * Try yet again to fix issues * Correct the urlpart * Change to sort_natural, minor code tidy * Try and fix the sorting * Try again to fix the sorting * Remove debugging * Add a link to orgs page * Turn on the remaining redcarpet extensions so we match GitHub From https://george-hawkins.github.io/basic-gfm-jekyll/redcarpet-extensions.html * Switch to kramdown * Turn on some other options * Add a site field to orgs * Add more org websites * Add the site field to the how to
50 lines
1.5 KiB
HTML
50 lines
1.5 KiB
HTML
{% include data.html %}
|
|
{% assign urlparts = page.url|split:"/" %}
|
|
{% assign orgname = urlparts[2] %}
|
|
{% assign ourpids = pids|where:"owner",orgname %}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
{% include head.html %}
|
|
<body class="{% if site.animated %}animated fade-in-down{% endif %}">
|
|
<div class="site-wrap">
|
|
{% include header.html %}
|
|
|
|
<div class="post p2 p-responsive wrap" role="main">
|
|
<div class="measure">
|
|
<div class="post">
|
|
<header class="post-header">
|
|
<h1 class="h2">{{page.title|xml_escape}}</h1>
|
|
</header>
|
|
<article class="post-content">
|
|
{% if page.site %}
|
|
<table>
|
|
<tr><th>Site</th><td><a href="{{page.site}}">{{page.site|xml_escape}}</a></td></tr>
|
|
</table>
|
|
{% endif %}
|
|
|
|
{{ content }}
|
|
|
|
<h2>Allocated PIDs</h2>
|
|
<table>
|
|
<thead>
|
|
<tr><th>VID</th><th>PID</th><th>Device</th></tr>
|
|
</thead>
|
|
{% for pid in ourpids %}
|
|
{% assign pidurlparts = pid.url|split:"/" %}
|
|
<tr>
|
|
<th><a href="/{{pidurlparts[1]}}/">{{pidurlparts[1]}}</a></th>
|
|
<th><a href="{{pid.url}}">{{pidurlparts[2]}}</a></th>
|
|
<td>{{page.title|xml_escape}} {{pid.title|xml_escape}}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</article>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% include footer.html %}
|
|
</body>
|
|
</html>
|