-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpost.html
40 lines (35 loc) · 939 Bytes
/
post.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
---
layout: post
---
<!DOCTYPE html>
<html>
<head>
{% include meta.html %}
</head>
<body>
<!-- Page Wrapper -->
<div id="page-wrapper">
{% include header_post.html %}
{% if page.featured %}
<img class="bg-image" src="{{ site.baseurl }}/images/posts/{{page.featured}}">
{% endif %}
<!-- Main -->
<article id="main">
<header>
<p class="fecha">{{ page.date | date: "%d.%m.%Y" }}</p>
<h2 class="t-blanca">{{ page.title }}</h2>
<p>{{ page.excerpt }}</p>
</header>
<section class="wrapper nota style5 ">
<div class="inner">
<p>{{ page.content }}</p>
</div>
</section>
</article>
<!-- Footer -->
{% include footer.html %}
<!-- js -->
{% include js.html %}
</div>
</body>
</html>