-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
42 lines (35 loc) · 1.07 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
39
40
41
42
---
layout: default
---
<div class="home">
{% include headpic.html %}
<div class="postfeedwrapper">
<h1 class="page-heading">Blog</h1>
<ul class="post-list">
{% for post in site.posts %}
<li class="minimalpostlist">
<div class="minimalpost">
<div class = "blogtitlebanner">
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<!-- <img src={{post.imgurl}}> </img> -->
<h2>
<p class="post-link" >{{ post.title }}</p>
</h2>
</div>
<div class="bloginvis blog-content">
{{post.content}}
</div>
</div>
</li>
{% endfor %}
</ul>
</div>
<!-- <p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p> -->
<!-- href="{{ post.url | prepend: site.baseurl }}" -->
<div class="profileWrap">
<h1>MEET THE TEAM</h1>
<div class="profiles" align="middle">
{% include about.html %}
</div>
</div>
</div>