-
Notifications
You must be signed in to change notification settings - Fork 30
/
blog.html
16 lines (16 loc) · 1.07 KB
/
blog.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
layout: page
title: Blog
permalink: /blog/
---
{% for post in site.categories.blog %}<!-- previously: site.posts -->
<p><a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a><br/>
<span class="post-date">Posted on{% if post.date %} {{ post.date | date: "%b %-d, %Y" }}{% endif %}
{% if post.authors %}by {% include authors.html %}{% endif %}</span>
{% if post.excerpt %}<br/>{{ post.excerpt }}{% endif %}</p>
{% endfor %}
<p class="info">Want to contribute a blog post? Check out the source for some of the <a href="https://github.com/apache/drill-site/tree/master/blog/_posts">existing posts</a> to see how it's done. When you're ready, email your Markdown file to <a href="mailto:[email protected]">[email protected]</a>.</p>
<h1>Third-Party Articles</h1>
{% for article in site.data.articles %}<!-- previously: site.posts -->
<p><a class="post-link" href="{{ article.url }}">{{ article.title }}</a>{% if article.date %} ({{ article.date | date: "%b %-d, %Y" }}){% endif %}{% if article.excerpt %}<br/>{{ article.excerpt }}{% endif %}</p>
{% endfor %}