-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·38 lines (36 loc) · 1.09 KB
/
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
---
layout: default
---
<div class="home">
<div class="posts">
{% for post in paginator.posts %}
{% if forloop.index == 1 %}
{% if paginator.page == 1 %}
<div class="post py3">
<h2 class="h1 post-title">Mike P Land<br>Co-Founder | CTO at ChangEd</h2>
<p class="post-summary">
<div class="page-content">
{% include shortBio.html %}
<br>
{% include portfolio.html %}
</div>
</p>
</div>
<hr>
{% endif %}
{% endif %}
<div class="post py3">
<p class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</p>
<a href="{{ post.url | prepend: site.baseurl }}" class="post-link"><h3 class="h1 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>