forked from fplb/fplb.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·87 lines (70 loc) · 3.23 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
---
layout: compress
---
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="{{ site.description }}" />
<meta name="keywords" content="{{ site.keywords }}" />
<meta name="author" content="{{ site.author }}" />
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
<link rel="shortcut icon" href="img/favicon.ico">
<title>{{ site.title }}</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-3">
<div class="sidebar-content">
<p>
<img src="https://avatars3.githubusercontent.com/u/13721263" class="img-responsive" alt="">
</p>
<p>
FPLB is monthly get together for functional programming enthusiasts. Regardless of your choice of language or experience, if you're interested in controlling side effects and a little lambda calculus (or if have no idea what those mean), come on in!
</p>
<nav>
<ul>
<li><a href="https://github.com/fplb">Github</a></li>
<li><a href="https://twitter.com/fplongbeach">Twitter</a></li>
</ul>
</nav>
</div>
</div>
<div class="col-md-9">
<div class="container-fluid">
<div class="row">
{% for post in site.posts %}
<div class="col-md-4 col-sm-6">
<div class="tile">
<div class="poster"
style="background-image:url({{post.image}})"
></div>
<div class="info">
<h2><a href="{{ post.url }}">
{{ post.title }}
</a></h2>
<span class="date">
{{ post.date | date: "%-d %B %Y" }}
</span>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
<footer class="row">
<div class="col-md-12">
<p>
© FPLB
</p>
</div>
</footer>
</div>
</body>
</html>