removing gh-pages branch and putting everything in master
This commit is contained in:
14
news.md
Normal file
14
news.md
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
title: News
|
||||
permalink: /news/
|
||||
---
|
||||
|
||||
{% assign counter = '0' %}
|
||||
{% for post in site.posts %}
|
||||
{% for tag in post.tags %}
|
||||
{% if tag == "news" %}
|
||||
<li><a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a> ({{ post.date | date: "%b %-d, %Y" }})</li>
|
||||
<div class="summary">{{post.summary}}</div>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
Reference in New Issue
Block a user