forked from pidcodes/pidcodes.github.com
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
33 lines (30 loc) · 954 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
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>