1
0
Fork 0
empact/app/app.html

28 lines
1.3 KiB
HTML
Raw Normal View History

2015-03-07 14:13:47 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf8">
<title>Empact</title>
2015-03-07 15:33:02 +00:00
<link rel="stylesheet" href="/bower_components/normalize.css/normalize.css">
2015-03-10 14:52:01 +00:00
<link rel="stylesheet" href="/styles/logo.css">
2015-03-16 08:33:33 +00:00
<link rel="stylesheet" href="/styles/menu.css">
2015-03-08 08:10:40 +00:00
<link rel="stylesheet" href="/styles/app.css">
2015-03-08 10:02:14 +00:00
<link rel="stylesheet" href="/styles/charts.css">
2015-03-16 08:36:27 +00:00
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600' rel='stylesheet' type='text/css'>
2015-03-07 14:13:47 +00:00
</head>
<body></body>
2015-03-07 15:33:02 +00:00
<script src="/bower_components/react/react.js"></script>
<script src="/bower_components/react-router/build/global/ReactRouter.js"></script>
2015-03-11 12:10:11 +00:00
<script src="/bower_components/lodash/lodash.js"></script>
2015-03-07 15:33:02 +00:00
<script src="/bower_components/jquery/dist/jquery.js"></script>
2015-03-08 08:10:40 +00:00
<script src="/scripts/colors.js"></script>
2015-03-11 12:10:11 +00:00
<script src="/scripts/svground.js"></script>
2015-03-13 12:08:13 +00:00
<script src="/scripts/compiled/charts/charts.js"></script>
<script src="/scripts/compiled/charts/data.js"></script>
<script src="/scripts/compiled/charts/animation.js"></script>
<script src="/scripts/compiled/charts/selector.js"></script>
<script src="/scripts/compiled/charts/bar_chart.js"></script>
<script src="/scripts/compiled/charts/stacked_area_chart.js"></script>
2015-03-11 12:10:11 +00:00
<script src="/scripts/compiled/app.js"></script>
2015-03-07 14:13:47 +00:00
</html>