-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (26 loc) · 1.01 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
---
layout: default
---
<div class="home">
<!-- <h1 class="page-heading">Posts</h1> -->
<ul class="post-list">
{% for post in site.tags['homepage'] limit:10 %}
<li>
<h2 style="homepage_sum_title">
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
<div style="min-height:100px;" >
{% if post.image-url contains 'assets' %}
<div class="homepage_sum_img" style="float:right;" >
<img src="{{ site.baseurl }}{{ post.image-url }}" style="max-width:160px;max-height:120px;padding:5px;margin-top:-20px;float:left"
alt="post visual" title="{{ post.title }}" />
</div>
{% else %}
{% endif %}
<div class="home-article-meta" style="margin-right:190px">{{ post.date | date: "%b %-d, %Y" }} - {{ post.description }}</div>
</div>
</li>
{% endfor %}
</ul>
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
</div>