Paul Shen
12 years ago
7 changed files with 54 additions and 6 deletions
@ -0,0 +1,10 @@ |
|||||
|
<h1><a href="/react{{ page.url }}">{{ page.title }}</a></h1> |
||||
|
<p class="meta">{{ page.date | date_to_string }} by {{ page.author }}</p> |
||||
|
|
||||
|
<div id="post"> |
||||
|
{% if content != '' %} |
||||
|
{{ content }} |
||||
|
{% else %} |
||||
|
{{ page.content }} |
||||
|
{% endif %} |
||||
|
</div> |
@ -0,0 +1,10 @@ |
|||||
|
<div class="nav-docs"> |
||||
|
<div class="nav-docs-section"> |
||||
|
<h3>Recent posts</h3> |
||||
|
<ul> |
||||
|
{% for post in site.posts %} |
||||
|
<li><a href="/react{{ post.url }}"{% if page.title == post.title %} class="active"{% endif %}>{{ post.title }}</a></li> |
||||
|
{% endfor %} |
||||
|
</ul> |
||||
|
</div> |
||||
|
</div> |
@ -0,0 +1,14 @@ |
|||||
|
--- |
||||
|
layout: default |
||||
|
sectionid: blog |
||||
|
--- |
||||
|
|
||||
|
<section class="content wrap documentationContent"> |
||||
|
{% include nav_blog.html %} |
||||
|
<div class="inner-content"> |
||||
|
{% for page in site.posts %} |
||||
|
{% include blog_post.html %} |
||||
|
{% endfor %} |
||||
|
</div> |
||||
|
</section> |
||||
|
|
@ -1,12 +1,11 @@ |
|||||
--- |
--- |
||||
layout: default |
layout: default |
||||
|
sectionid: blog |
||||
--- |
--- |
||||
|
|
||||
<section class="content wrap"> |
<section class="content wrap documentationContent"> |
||||
<h2>{{ page.title }}</h2> |
{% include nav_blog.html %} |
||||
<p class="meta">{{ page.date | date_to_string }}</p> |
<div class="inner-content"> |
||||
|
{% include blog_post.html %} |
||||
<div id="post"> |
|
||||
{{ content }} |
|
||||
</div> |
</div> |
||||
</section> |
</section> |
||||
|
@ -0,0 +1,10 @@ |
|||||
|
--- |
||||
|
title: JSFiddle Integration |
||||
|
layout: post |
||||
|
author: Vjeux |
||||
|
--- |
||||
|
|
||||
|
[JSFiddle](http://jsfiddle.net) just announced support for React. This is an exciting news as it makes collaboration on snippets of code a lot easier. You can play around this **[base React JSFiddle](http://jsfiddle.net/vjeux/kb3gN/)**, fork it and share it! A [fiddle without JSX](http://jsfiddle.net/vjeux/VkebS/) is also available . |
||||
|
|
||||
|
<blockquote class="twitter-tweet" align="center"><p>React (by Facebook) is now available on JSFiddle. <a href="http://t.co/wNQf9JPv5u" title="http://facebook.github.io/react/">facebook.github.io/react/</a></p>— JSFiddle (@jsfiddle) <a href="https://twitter.com/jsfiddle/status/341114115781177344">June 2, 2013</a></blockquote> |
||||
|
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script> |
@ -0,0 +1,4 @@ |
|||||
|
--- |
||||
|
title: Blog |
||||
|
layout: blog |
||||
|
--- |
Loading…
Reference in new issue