<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>React Templates</title> <meta name="viewport" content="width=device-width"> <meta name="description" content="Light weight templates for React."> <link rel="shortcut icon" href="https://facebook.github.io/react/favicon.ico"> <link href='http://fonts.googleapis.com/css?family=Lato:100,300,700' rel='stylesheet' type='text/css'> <!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css"> <!-- Optional theme --> <!--<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap-theme.min.css">--> <link rel="stylesheet" href="playground/libs/codemirror-4.8/lib/codemirror.css" /> <link rel="stylesheet" href="playground/libs/codemirror-4.8/theme/solarized.css" /> <link rel="stylesheet" href="playground/libs/codemirror-4.8/addon/hint/show-hint.css"> <link rel="stylesheet" href="playground/libs/codemirror-4.8/addon/lint/lint.css"> <link rel="stylesheet" href="playground/css/playground.css"/> <link rel="stylesheet" href="playground/css/home.css"/> </head> <body> <div class="container"> <div class="nav-main"> <div class="wrap"> <a class="nav-home" href="index.html"> <img class="nav-logo" src="https://wix.github.io/react-templates/img/logo-rt.svg" width="56" height="24"> <span>React Templates</span> </a> <ul class="nav-site"> <li><a href="fiddle.html">Playground</a></li> <li><a href="https://github.com/wix/react-templates#template-directives-and-syntax">docs</a></li> <li><a href="https://github.com/wix/react-templates#installation">download</a></li> <li><a href="https://github.com/wix/react-templates">github</a> </ul> </div> </div> <div class="hero"> <div class="wrap"> <div class="text">React Templates</div> <div class="minitext"> Lightweight Templates for React </div> <div class="buttons-unit"> <a href="fiddle.html" class="button">Check Out the Playground</a> </div> </div> </div> <section class="content wrap"> <section class="love-list"> <ul > <li>No runtime libraries. No magic. Just simple pre-compilation to a clear React code</li> <li>Super easy to write panels. By panels we mean components that have a lot of HTML code and non-reusable logic</li> <li>Very good separation of presentation and logic. Almost no HTML within the component file</li> <li>Declarative coding for presentation. HTML that you write and inspect look similar</li> <li>Easy syntax. Similar to HTML. All IDEs recognize this format</li> <li>Supports <a href="#amd">AMD</a>, <a href="#commonjs">CommonJS</a> and globals</li> </ul> </section> <section id="home-section" class="home-section"> </section> <div id="loading">Loading...</div> <hr class="home-divider" /> </section> <footer class="footer"> <span>Sponsored by </span> <a href="//wix.com" class="wf-white-logo"></a> </footer> </div> <script src="http://code.jquery.com/jquery-1.11.0.min.js"></script> <!--<script src="playground/libs/ace-builds-1.1.8/src-min-noconflict/ace.js" type="text/javascript" charset="utf-8"></script>--> <script src="playground/dist/rt-main.browser.min.js"></script> <!--<script data-main="playground/home-main.js" src="http://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.15/require.js"></script>--> <!--<script src="http://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.15/require.js"></script>--> <!--http://requirejs.org/docs/release/2.1.15/minified/require.js--> <!--<script data-main="playground/home-main.js" src="//cdnjs.cloudflare.com/ajax/libs/require.js/2.1.15/require.min.js"></script>--> <!--<script src="playground/home-main.js"></script>--> <script src="//cdnjs.cloudflare.com/ajax/libs/require.js/2.1.15/require.min.js"></script> <script src="playground/dist/home.min.js"></script> </body> </html>