-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (18 loc) · 784 Bytes
/
index.html
File metadata and controls
23 lines (18 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
layout: homepage
title: Technology, entrepreneurship, education
description: Descriptions are sometimes used in the header.
---
{% for post in paginator.posts limit:10 %}
<article class="blog">
<header class="post-meta">
<h1>{% if post.link %}<a href="{{ post.link }}"> {% else %} <a href="{{ post.url }}">{% endif %} {{ post.title }}</a></h1>
<time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date: "%B %d, %Y" }}</time>
</header>
{{post.content}}
<footer class="post-meta">
<div class="post-topics">Topics: {% for tag in post.tags %}{% if forloop.index > 1 %}, {% endif%}<a href="tag/{{ tag }}">{{ tag }}</a>{% endfor %}</div>
{% if post.link %}<p><a href="{{ page.url }}">Permalink</a></p>{% endif %}
</footer>
</article>
{% endfor %}