-
Notifications
You must be signed in to change notification settings - Fork 4
/
tag_archives.html
executable file
·66 lines (60 loc) · 1.98 KB
/
tag_archives.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!-- <!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{ config.title }}</title>
<meta name="viewport" content="width=device-width">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="stylesheet" href="/css/main.css">
</head>
<body>
{% include "partials/navigation.html" %}
<header class="topWrap">
<section class="lobby">
<h1 class="pageTitle">
{{ config.title }}
</h1>
<a href="/">
<img class="logo" src="/images/logo.svg" alt="JS Rocks" />
</a>
</section>
</header>
<section id="posts" class="posts">
<ul class="postList">
{% for post in posts %}
<li class="post">
<span class="post__date">
{{ post.date }}
</span>
<article class="post__content">
<a class="post__title" href="/{{ post.link }}">
{{ post.title }}
</a>
<section class="post__excerpt">
{{ post.content }}
</section>
</article>
<section class="post__author">
<figure class="author">
<img class="author__photo" src="{{ post.authorPicture }}" />
<figcaption>
<a class="author__link" href="{{ post.authorLink }}">@Jaydson</a>
</figcaption>
</figure>
<section class="author__description">
{{ post.authorDescription }}
</section>
</section>
</li>
{% endfor %}
</ul>
</section>
</main>
{% include "partials/footer.html" %}
</body>
</html> -->
{% extends "layout.html" %}
{% block title %}404: Not Found!{% endblock %}
{% block content %}
<h2>404: Not Found!</h2>
{% endblock %}