forked from pmoskovi/kaazing-developer-network
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjavascriptDemos.html
More file actions
30 lines (25 loc) · 1.33 KB
/
javascriptDemos.html
File metadata and controls
30 lines (25 loc) · 1.33 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
---
layout: default
---
<div class="row">
<div class="col-lg-12">
<!-- <div class="blank-page"> -->
<div class="home">
<p><div class="btn-toolbar"></div></p>
<ul class="posts">
{% for post in site.posts %}
{% if post.categories contains 'javascript' %}
<li class="col-sm-4">
<!-- <span class="post-date">{{ post.date | date: "%b %-d, %Y" }}</span> -->
<a href="{{ post.url | prepend: site.url }}"><img src="{{post.image}}" height="160"></img>
<p><div class="btn-toolbar"></div></p>
<a class="post-link" href="{{ post.url | prepend: site.url }}">{{ post.title }}</a>
</li>
{% endif %}
{% endfor %}
</ul>
<!-- <p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p> -->
</div>
<!-- </div> -->
</div>
</div>