comparison index.md @ 48:aa0c5c467963 kai

RSS updates. Include list of changes directly. Print only excerpts on main page.
author Kai T. Ohlhus <k.ohlhus@gmail.com>
date Wed, 28 Sep 2016 11:29:32 +0200
parents dbc6628a3c05
children 0a7baadc93a4
comparison
equal deleted inserted replaced
47:6b221a8157ab 48:aa0c5c467963
137 ### News 137 ### News
138 138
139 {% for post in site.posts limit:3 %} 139 {% for post in site.posts limit:3 %}
140 <div class="panel callout"> 140 <div class="panel callout">
141 <h3 class="entry-title"> 141 <h3 class="entry-title">
142 <a href="{{ root_url }}{{ post.url }}">{{ post.title }}</a> 142 <a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
143 <span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span> 143 <span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
144 </h3> 144 </h3>
145 <div class="entry-content">{{ post.content }}</div> 145 <div class="entry-content">{{ post.excerpt }}</div>
146 </div> 146 </div>
147 {% endfor %} 147 {% endfor %}
148 148
149 149
150 150