blob: 0b25d7cefb8cecc95318b2b5ff3813285d3b4753 (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>{{ page.title }}</title>
{% include header.html %}
</head>
<body>
{% include nav.html %}
<main>
<div class="container">
<img src="{{ site.baseurl }}/assets/img/grunge.png" alt="" class="line">
<p class="center">[ N<sup>o</sup>{% for post in site.posts %}
{% if post.title == page.title %}
{{ forloop.index | roman }}
{% endif %}
{% endfor %} ]
<span> {{ page.keywords }}</span></p>
<img src="{{ site.baseurl }}/assets/img/grunge.png" alt="" class="line flip">
<h2 class="brand center" id="title">{{ page.title | upcase }}</h2>
{% if page.abstract %}<h5 class="center">{{ page.abstract }}</h5>{% endif %}
{% if page.category %}
<img src="{{ site.baseurl }}/assets/img/grunge.png" alt="" class="line tag flip">
<p class="right tagline">{{ page.category }}</p>
<img src="{{ site.baseurl }}/assets/img/grunge.png" alt="" class="line tag">
{% endif %}
<br>
<h4 class="center space">{{ site.location | upcase }}</h4>
<h5 class="center">{{ page.date | date_to_long_string | upcase }}</h5>
<div class="threecol justify">
{{ content }}
</div>
<p class="right italics">by {{ page.author }}</p>
</div>
</main>
</body>
</html>
|