-
-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathindex.html
51 lines (38 loc) · 1.69 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
---
layout: compress
---
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
<meta name="description" content="{{ site.description }}">
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
<link rel="stylesheet" href="{{site.baseurl}}/css/home.css">
<!-- Favicon -->
<link rel="shortcut icon" type="image/x-icon" href="{{site.baseurl}}/favicon.ico" />
</head>
<body>
<header>
<a href="{{site.baseurl}}"><div class="brand"><img class="logo" src="{{site.baseurl}}/images/webjeda-slides.svg" alt="webjeda-slides">
<h1 class="headline">{{site.title}}</h1></div></a>
</header>
<div class="pack">
<p class="head-text">What if you can manage all your presentations from one place?!</p>
{% for post in site.posts %}
<a target="_blank" class="link" href="{{site.baseurl}}{{post.url}}">
<div class="card" style="background-color: {% cycle '#e74c3c', '#1abc9c', '#e67e22', '#34495e', '#f1c40f', '#3498db', '#2ecc71', '#9b59b6' %}" >
<div class="card-number">
{{forloop.rindex}}
</div>
<div class="card-title">
{{ post.title | truncate: 13 }}
</div>
</div>
</a>
{% endfor %}
</div>
{% include analytics.html %}
</body>
</html>