-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (35 loc) · 1.49 KB
/
index.html
File metadata and controls
39 lines (35 loc) · 1.49 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
---
layout: default
---
<div class="home">
<header class="sub-title">
<h2>A monthly coding meetup in Manchester, where developers hone their skills by performing <a href="http://en.wikipedia.org/wiki/Kata_(programming)" rel="nofollow">Katas</a></h2>
</header>
<section>
<div class="grid">
<div class='grid__item lap--one-whole palm--one-whole two-thirds'>
<ul class="events">
{% for post in site.posts limit:3 %}
<li>
<article class="event">
<div class="header">
<h3 class="title">{{post.date | date_to_string}} - {{ post.title }}</h3>
</div>
<div class="event-content">{{post.content}}</div>
</article>
</li>
{% endfor %}
</ul>
<div class="allEventsLink">
<a href="/events">See all previous events</a>
</div>
</div><!--
--><div class='grid__item lap--one-whole palm--one-whole one-third'>
<div class="span4 twitter">
<a class="twitter-timeline" href="https://twitter.com/manc_codejo" data-widget-id="348794252693745664">Tweets by @manc_codejo</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</div>
</div>
</div>
</section>
</div>