-
Notifications
You must be signed in to change notification settings - Fork 9
/
embed_latest.html
47 lines (43 loc) · 977 Bytes
/
embed_latest.html
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
---
title: Embed
layout: none
noindex: true
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>
{{ site.name }}
</title>
<link rel="stylesheet" href="/static/style.css?v=1">
<link rel="stylesheet" href="/static/css/all.min.css">
<base target="_parent">
</head>
<body class="p-4">
{% assign post = site.posts[0] %}
<a href="{{ post.url }}">
<div class="card is-horizontal" >
{% if post.image %}
<div class="card-image" href="{{ post.url }}">
<figure class="image">
<img src="{{ post.image }}" alt="Post image">
</figure>
</div>
{% endif %}
<div class="card-content">
<span class="is-pulled-right" href="{{ post.url }}">
{{ post.date | date_to_string }}
</span>
<h2 class="title is-4">
{{ post.title }}
</h2>
<div class="content">
{{ post.excerpt }}
</div>
</div>
</div>
</a>
</body>
</html>