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
48 lines
1.6 KiB
HTML
48 lines
1.6 KiB
HTML
{% include data.html %}
|
|
{% capture orgpath %}/org/{{page.owner}}/{% endcapture %}
|
|
{% assign org = {{orgs|where:"url",orgpath|first}} %}
|
|
{% assign urlparts = page.url|split:"/" %}
|
|
{% assign vid = urlparts[1] %}
|
|
{% assign pid = urlparts[2] %}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
{% capture title %}{{page.vid}}/{{page.pid}} {{page.title}}{% endcapture %}
|
|
{% include head.html title=title %}
|
|
<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">
|
|
<a href="/{{page.vid}}/">{{vid}}</a> /
|
|
{{pid}} -
|
|
{{page.title}}
|
|
</h1>
|
|
</header>
|
|
<article class="post-content">
|
|
<table>
|
|
<tr><th>VID</th><td>0x{{vid}}</td></tr>
|
|
<tr><th>PID</th><td>0x{{pid}}</td></tr>
|
|
<tr><th>Owner</th><td><a href="{{org.url}}">{{org.title}}</a></td></tr>
|
|
<tr><th>License</th><td>{{page.license}}</td></tr>
|
|
{% if page.site %}
|
|
<tr><th>Site</th><td><a href="{{page.site}}">{{page.site}}</a></td></tr>
|
|
{% endif %}
|
|
{% if page.source %}
|
|
<tr><th>Source</th><td><a href="{{page.source}}">{{page.source}}</a></td></tr>
|
|
{% endif %}
|
|
</table>
|
|
{{ content }}
|
|
</article>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% include footer.html %}
|
|
</body>
|
|
</html>
|