-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (35 loc) · 982 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
34
35
36
37
---
layout: default
title: 3D-Printing Home
limit_posts: 5
exclude_search: true
---
<h1>{{ site.owner }}'s</h1>
<h2>{{ site.title }}</h2>
<h3>{{ site.sub-title }}</h3>
<p>
See my updated <a href="3d-printing-manifesto">3D Printing Manifesto</a>
where I discuss my techniques, insights, and failures. Also
see the blog where I document more in depth about each of my projects.
</p>
<h2>Blog Posts</h2>
<ul id="blog-post-list">
{% for post in site.posts %}
<li>
<div class="blog-post-excerpt">
<h2 class="blog-post-title">
<a href="{{ post.url | absolute_url }}">
<small>{{ post.date | date: "%-d %B %Y" }}</small>
{{ post.title }}
</a>
</h2>
{% if post.excerpt %}
<blockquote class="blog-excerpt">
{{ post.excerpt }}
<div class="read-more"><a href="{{ post.url | absolute_url }}"><span>Read More</span></a></div>
</blockquote>
{% endif %}
</div>
</li>
{% endfor %}
</ul>