mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
* DEV: Use custom tags rather than handlebars server side These will be skipped if they are ever rendered in a document. The handlebars really messes stuff up. * DEV: Build our own locale file for testing purposes We can't practically proxy everything in test mode, but we can approximate the logic and build our own locale file for testing purposes that works quite well. This allows us to run tests without a proxy. * DEV: Support for testem runner for ember cli tests
41 lines
1.1 KiB
HTML
41 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
|
|
<bootstrap-content key="html-tag">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>Discourse - Ember CLI</title>
|
|
<meta name="description" content="">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<bootstrap-content key="before-script-load">
|
|
{{content-for "before-script-load"}}
|
|
|
|
<script src="{{rootURL}}assets/vendor.js"></script>
|
|
<script src="{{rootURL}}assets/discourse.js"></script>
|
|
<script src="{{rootURL}}assets/admin.js"></script>
|
|
|
|
<bootstrap-content key="head">
|
|
{{content-for "head"}}
|
|
</head>
|
|
<body>
|
|
<bootstrap-content key="body">
|
|
{{content-for "body"}}
|
|
|
|
<section id='main'>
|
|
</section>
|
|
|
|
<div id='offscreen-content'>
|
|
</div>
|
|
|
|
<bootstrap-content key="hidden-login-form">
|
|
<bootstrap-content key="preloaded">
|
|
|
|
<script src="{{rootURL}}assets/scripts/start-app.js"></script>
|
|
<script src="{{rootURL}}assets/scripts/discourse-boot.js"></script>
|
|
|
|
<bootstrap-content key="body-footer">
|
|
{{content-for "body-footer"}}
|
|
</body>
|
|
</html>
|