-
Notifications
You must be signed in to change notification settings - Fork 5
/
blog.html
36 lines (31 loc) · 1.32 KB
/
blog.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
---
layout: default
---
<div class="row">
<div class="col-md-12 text-center">
<h1>Vim-Php <small>Share your tricks, feedback and experience</small></h1>
</div>
</div>
<hr>
<div class="row">
<div class="col-md-3">
<h3>Follow <a href="https://twitter.com/search?f=realtime&q=vimForPHP&src=typd" target="_blank">#vimForPHP</a></h3>
<a class="twitter-timeline" href="https://twitter.com/hashtag/vimForPHP" data-widget-id="573627528457379842">#vimForPHP Tweets</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 class="col-md-6">
<div class="row">
<h3>Posts</h3>
</div>
<div class="row">
<div class="col-md-12">
{% for post in site.posts %}
<li><span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a> by <a target="_blank" href="{{ post.author_link }}">[{{ post.author }}]</a></li>
{% endfor %}
</div>
</div>
</div>
<div class="col-md-3">
{% include nav.html %}
</div>
</div>