-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathposts.html
More file actions
96 lines (94 loc) · 4 KB
/
posts.html
File metadata and controls
96 lines (94 loc) · 4 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
---
layout: compress
---
<!DOCTYPE html>
<html lang="pt-br" dir="ltr">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Posts</title>
<meta name="description" content="{{ site.description }}"/>
<meta name="keywords" content="{{ site.keywords }}"/>
<meta name="author" content="{{ site.author }}"/>
<link rel="shortcut icon" href="img/favicon.ico">
<link rel="stylesheet" type="text/css" href="css/normalize.css"/>
<link rel="stylesheet" type="text/css" href="fonts/font-awesome/css/font-awesome.css"/>
<link rel="stylesheet" type="text/css" href="css/modern-blog.css"/>
<!-- [if IE]> -->
<script type="text/javascript" src="js/vendors/html5.min.js"></script>
<!-- <![endif] -->
<script>
if (navigator.userAgent.toLowerCase().indexOf('firefox') > -1) {
var root = document.getElementsByTagName('html')[0];
root.setAttribute('class', 'ff');
}
</script>
</head>
<body>
<header class="header">
<div class="recent">
<ul class="nav">
<li class="nav-item">
<b><a class="nav-link" href="index.html">Página Inicial</a></b>
</li>
<li class="nav-item">
<b><a class="nav-link" href="sobre.html">Sobre mim</a></b>
</li>
<!-- <li class="nav-item">
<b><a class="nav-link" href="categorias">Categorias</a></b>
</li> -->
<li class="nav-item">
<b><a class="nav-link" href="palestras-tutoriais.html">Palestras e Tutoriais</a></b>
</li>
</ul>
</div>
</header>
<div class="content">
<!-- trianglify pattern container -->
<div class="pattern pattern--hidden"></div>
<!-- cards -->
<div class="wrapper">
{% for post in site.posts %}
<div class="card" data-id="{{ post.id }}">
<div class="card__container card__container--closed">
<svg class="card__image" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 1920 1200"
preserveAspectRatio="xMidYMid slice">
<defs>
<clipPath id="{{ post.id }}-clip-path">
<polygon class="clip" points="0,1200 0,0 1920,0 1920,1200"></polygon>
</clipPath>
</defs>
<image clip-path="url(#{{ post.id }}-clip-path)" width="1920" height="1200"
xlink:href="{{ post.image }}"></image>
</svg>
<div class="card__content">
<i class="card__btn-close fa fa-times"></i>
<div class="card__caption">
<h2 class="card__title">{{ post.title }}</h2>
<p class="card__subtitle">{{ post.subtitle }}</p>
</div>
<div class="card__copy">
<div class="meta">
<img class="meta__avatar" src="{{ post.avatar }}"/>
<span class="meta__author">{{ post.author }}</span>
<span class="meta__date">{{ post.date | date: "%Y-%m-%d" }}</span>
</div>
{{ post.content }}
</div>
</div>
</div>
</div>
{% endfor %}
<!-- /cards -->
</div>
</div>
<script src="js/vendors/trianglify.min.js"></script>
<script src="js/vendors/TweenMax.min.js"></script>
<script src="js/vendors/ScrollToPlugin.min.js"></script>
<script src="js/vendors/cash.min.js"></script>
<script src="js/card-modern-blog.js"></script>
<script src="js/modern-blog.js"></script>
</body>
</html>