framework/ember/app/index.html

26 lines
617 B
HTML
Raw Normal View History

2014-12-20 14:26:46 +08:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Flarum</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
{{content-for 'head'}}
2014-12-20 14:26:46 +08:00
<link rel="stylesheet" href="assets/vendor.css">
<link rel="stylesheet" href="assets/flarum.css">
{{content-for 'head-footer'}}
2014-12-20 14:26:46 +08:00
</head>
<body>
{{content-for 'body'}}
2014-12-20 14:26:46 +08:00
<script src="assets/vendor.js"></script>
<script src="assets/flarum.js"></script>
{{content-for 'body-footer'}}
2014-12-20 14:26:46 +08:00
</body>
</html>