github.com/elliott5/community@v0.14.1-0.20160709191136-823126fb026a/app/tests/index.html (about)

     1  <!DOCTYPE html>
     2  <html>
     3  
     4  <head>
     5      <meta charset="utf-8">
     6      <meta http-equiv="X-UA-Compatible" content="IE=edge">
     7      <title>Documize Tests</title>
     8      <meta name="description" content="">
     9      <meta name="viewport" content="width=device-width, initial-scale=1">
    10      <meta property="dbname" content="{{.DBname}}" />
    11      <meta property="dbhash" content="{{.DBhash}}" />
    12      <meta name="author" content="Documize" />
    13  
    14  	<style>
    15  		#ember-testing-container, #ember-testing-container * {
    16  			/* Set position static to short-circuit Hubspot Tether's positioning */
    17  			/* https://github.com/HubSpot/tether/pull/98/ */
    18  			position: static !important;
    19  		}
    20  		.tether-container * {
    21      		z-index: 9999;
    22  		}
    23  	</style>
    24  
    25      {{content-for "head"}}
    26      {{content-for "test-head"}}
    27  
    28      <link rel="stylesheet" href="assets/vendor.css">
    29      <link rel="stylesheet" href="assets/documize.css">
    30      <link rel="stylesheet" href="assets/test-support.css" />
    31  
    32      {{content-for "head-footer"}}
    33      {{content-for "test-head-footer"}}
    34  </head>
    35  
    36  <body>
    37      {{content-for "body"}}
    38      {{content-for "test-body"}}
    39  
    40      <script src="testem.js" integrity=""></script>
    41      <script src="assets/vendor.js"></script>
    42      <script src="assets/test-support.js"></script>
    43      <script src="assets/documize.js"></script>
    44      <script src="assets/tests.js"></script>
    45      <script src="assets/test-loader.js"></script>
    46  
    47      {{content-for "body-footer"}}
    48      {{content-for "test-body-footer"}}
    49  </body>
    50  
    51  </html>