-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathindex.old.html
More file actions
31 lines (23 loc) · 819 Bytes
/
index.old.html
File metadata and controls
31 lines (23 loc) · 819 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
31
---
---
{% for post in site.posts %}
{% if site.time > post.date %}
<!DOCTYPE html>
<html>
<head>
<title>MailTape {{ post.category }} - {{ post.guest_name }}</title>
<meta property="og:title" content="MailTape {{ post.category }} - {{ post.guest_name }}" />
<meta property="og:type" content="article" />
<meta property="og:url" content="{{ post.episode_URL }}" />
<meta property="og:image" content="http://mailta.pe/img/{{ post.fbPic }}" />
<meta property="og:description" content="{{ post.description }}" />
<meta property="fb:admins" content="maximeguedj,ludovic.coutant" />
<meta property="fb:app_id" content="185828848128617" />
<script type="text/javascript">
document.location = "{{ post.url }}";
</script>
</head>
</html>
{% break %}
{% endif %}
{% endfor %}