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 * Install dependencies for Travis * Create .travis.yml * Add the Travis script * Update the Ruby version * Bump the Ruby version some more * Switch back to the documented version * Add the exclude * Update based on https://github.com/jekyll/jekyll/pull/5413 * Add github-pages Gem * Add missing gems * Add redcarpet * Switch to tasks so we can run multiple CI tasks * Switch to tasks * Fix the matrix * More matrix fixing * Turn on more htmlproofer options * Make the check less strict * Don't bother complaining about extra jekyll tags * Escape HTML entities * Fix the email link * Fix the link within the 404 page! * Escape more HTML entities * Remove an invalid site URL * Cache ruby bundles * Escape even more HTML entities * Escape yet more HTML entities * Escape more HTML entities and switch to a div * Try and fix the errant paragraph item * Add a Travis badge to the readme * Update Gemfile Adapted from https://github.com/lunaryorn/lunaryorn.github.io * Update _config.yml * Add some more checks to Travis * Report GH Pages versions * Tidy up, add redcarpet back in * Try and stop the spurious paragraph tags
34 lines
971 B
HTML
34 lines
971 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 | xml_escape }}</h3>
|
|
</a>
|
|
<div class="post-summary">
|
|
{% if post.summary %}
|
|
{{ post.summary }}
|
|
{% else %}
|
|
{{ post.excerpt }}
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
{% include pagination.html %}
|
|
</div>
|