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
34 lines
954 B
HTML
34 lines
954 B
HTML
---
|
|
layout: default
|
|
---
|
|
|
|
<div class="home">
|
|
<div class="posts">
|
|
{% if paginator.page == 1 %}
|
|
<div class="post">
|
|
<article class="post-content">
|
|
pid.codes is a registry of USB PID codes for open source hardware projects. You can <a href="/pids/">see a list of PID assignments</a>, or learn <a href="/howto/">how to get your own</a>.
|
|
</article>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% for post in paginator.posts %}
|
|
<div class="post">
|
|
<a href="{{ post.url | prepend: site.baseurl }}" class="post-link">
|
|
<p class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</p>
|
|
<h3 class="h2 post-title">{{ post.title }}</h3>
|
|
</a>
|
|
<p class="post-summary">
|
|
{% if post.summary %}
|
|
{{ post.summary }}
|
|
{% else %}
|
|
{{ post.excerpt }}
|
|
{% endif %}
|
|
</p>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
{% include pagination.html %}
|
|
</div>
|