Last active
August 29, 2015 14:23
-
-
Save maberer/b49c9d9b3ff0f1e9d0da to your computer and use it in GitHub Desktop.
body wrapper
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title> | |
<layout-placeholder name="title"/> | |
</title> | |
<!-- | |
<link> tags to include optimized CSS URLs will be included below: | |
--> | |
<optimizer-head/> | |
</head> | |
<body> | |
<app-body-wrapper foo=${data.foo}> | |
<div class="container"> | |
<h1> | |
<layout-placeholder name="title"/> | |
</h1> | |
<main id="main"> | |
<layout-placeholder name="body"/> | |
</main> | |
</div> | |
</app-body-wrapper> | |
<!-- | |
<script> tags to include optimized JS URLs will be included below: | |
--> | |
<optimizer-body/> | |
<!-- Code to initialize widgets will be inserted below --> | |
<init-widgets immediate/> | |
<!-- Out-of-order async fragments (if any) will be rendered below --> | |
<async-fragments/> | |
<!-- | |
If the browser is started using the browser-refresh launcher | |
then a <script> tag will be injected below to open a WebSocket | |
connection to the server | |
--> | |
<browser-refresh enabled="true"/> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment