reagent/site/test.html

25 lines
748 B
HTML
Raw Normal View History

2013-12-16 22:19:36 +00:00
<html>
<head>
<meta charset="utf-8">
2014-01-17 10:12:11 +00:00
<title>Testing reagent</title>
2013-12-16 22:19:36 +00:00
<link rel="stylesheet" href="../examples/todomvc/todos.css">
2013-12-17 21:25:11 +00:00
<link rel="stylesheet" href="../examples/todomvc/todosanim.css">
2013-12-16 22:19:36 +00:00
<link rel="stylesheet" href="../examples/simple/example.css">
2014-01-03 14:52:44 +00:00
<link rel="stylesheet" href="demo.css">
2013-12-17 21:25:11 +00:00
<style type="text/css">
.runtests { margin-bottom: 400px; }
</style>
2013-12-16 22:19:36 +00:00
</head>
<body>
<h1>This will become an example when compiled</h1>
<script type="text/javascript" src="../target/cljs-client.js"></script>
<script type="text/javascript">
2014-01-17 15:00:42 +00:00
if (typeof runtests !== 'undefined') {
runtests.mounttests();
} else {
demo.mountdemo();
}
2013-12-16 22:19:36 +00:00
</script>
</body>
</html>