-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (65 loc) · 2.97 KB
/
index.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
67
68
---
layout: compress
---
<body class="body">
<div class="container">
<header class="header">
<h1>UZED<span>Nunca é o bastante.</span></h1>
<nav class="links">
<a href="/about.html" style="display: block;font-size: 20px;">Sobre</a>
<!--<a href="#"><i class="fa fa-twitter-square fa-3x"></i></a>-->
<a href="https://www.instagram.com/uzedmaster/"><i class="fa fa-instagram fa-3x"></i></a>
<a href="https://www.facebook.com/profile.php?id=611126501"><i class="fa fa-facebook-square fa-3x"></i></a>
<!--<a href="#"><i class="fa fa-tumblr-square fa-3x"></i></a>-->
</nav>
</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>
<!-- /container -->
</div>
<!-- JS -->
<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>