forked from jackfranklin/javascriptplayground.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (31 loc) · 1.33 KB
/
index.html
File metadata and controls
33 lines (31 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
31
32
33
---
layout: default
title: The JavaScript Playground
---
<article class="entry hentry home-intro">
<header class="entry-header">
<h1 class="entry-title">Welcome to the JavaScript Playground</h1>
</header>
<p>The JavaScript Playground is a blog dedicated to bringing you top quality JavaScript tutorials, including BackboneJS, FirefoxOS, NodeJS, jQuery and more. It's maintained and primarily written by <a href="http://twitter.com/Jack_Franklin">Jack Franklin</a>, with the help of some <a href="https://github.com/jackfranklin/javascriptplayground.com/graphs/contributors">awesome contributors</a>.</p>
</article>
{% assign post = site.posts.first %}
<article class="entry hentry home-post">
<header class="entry-header">
<h1 class="entry-title">Latest Post: {{ post.title }}</h1>
</header>
<div class="entry-intro">
<p> {{ post.intro }} <a href="{{ post.url }}">Read More</a></p>
</div>
</article>
<article class="entry hentry home-small-entry-wrap">
<header class="entry-header">
<h1>Recent Posts</h2>
<p>Or see all past content on the <a href="/archives.html">archives page</a>.</p>
</header>
{% for post in site.posts limit:6 offset:1 %}
<div class="home-small-entry">
<h4><a href="{{ post.url }}">{{ post.title }}</a></h4>
<p>{{ post.date | date: "%d %B %Y" }}</p>
</div>
{% endfor %}
</article>