-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (43 loc) · 1.2 KB
/
Copy pathindex.html
File metadata and controls
49 lines (43 loc) · 1.2 KB
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
40
41
42
43
44
45
46
47
48
49
---
layout: default
---
<section class="billboard text-center">
<h1 class="author-name">Joel Lubrano</h1>
<p>{{ site.description }}</p>
</section>
<section class="blog-preview text-center">
<h1 class="page-heading">The Code Less Traveled</h1>
<h2>Recent Posts</h2>
<ul class="post-list">
{% for post in site.posts limit: 3 %}
<li>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">
{{ post.title | escape }}
</a>
</h2>
</li>
{% endfor %}
</ul>
<br />
<p>
<a href="/blog"><i class="fas fa-terminal"></i> All Posts</a>
</p>
</section>
<section class="projects-preview text-center">
<h1 class="page-heading">Featured Projects</h1>
<ul class="featured-projects-list">
{% for project in site.data.projects limit: 2 %}
<li class="project-item">
<h2>{{ project.name | escape }}</h2>
<p>{{ project.description }}</p>
<p>Source available on {{ project.source_link }}</p>
</li>
{% endfor %}
</ul>
<br />
<p>
<a href="/projects"><i class="fas fa-terminal"></i> All Projects</a>
</p>
</section>