-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (29 loc) · 964 Bytes
/
index.html
File metadata and controls
30 lines (29 loc) · 964 Bytes
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
---
layout: nil
title: Anthony Ringoet
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="{{ page.title }} on Knife.io">
<meta name="author" content="Knife.io">
<link rel="alternate" type="application/atom+xml" href="/index.xml">
<link rel="stylesheet" href="/css/app.css">
<title>Knife.io</title>
</head>
<body>
{% include aside.ext %}
<article class="home content-block">
<ul class="listing">
{% for post in site.posts limit:50 %}
{% if post.standalone == null and post.type != 'page' %}
<li><time datetime="{{ post.date | date: "%Y-%m-%d" }}">{{ post.date | date_to_string }}</time><a href="{{ post.url }}">{{ post.title }}</a>
{% endif %}
{% endfor %}
</ul>
</article>
{% include analytics.ext %}
</body>
</html>