-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (38 loc) · 993 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
38
39
---
layout: default
---
<div class="row">
<div class="small-12 columns text-center">
<h2>Recent projects</h2>
<ul class="small-block-grid-2 medium-block-grid-3">
<li>
<a href="/projects/splunk-handler">Splunk Handler</a>
</li>
<li>
<a href="/projects/senior-design">Senior Design</a>
</li>
<li>
<a href="/projects/portfolio">Portfolio</a>
</li>
<li>
<a href="/projects/inventory">Inventory Web App</a>
</li>
<li>
<a href="/projects/unrolled-linked-list">Unrolled Linked List</a>
</li>
</ul>
</div>
</div>
<div class="row">
<div class="small-12 columns text-center">
<h2>Recent blog posts</h2>
<ul class="small-block-grid-2 medium-block-grid-3">
{% for post in site.posts limit:3 %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
{{ post.excerpt | truncatewords: 50 }}
</li>
{% endfor %}
</ul>
</div>
</div>