Last active
August 29, 2015 14:01
-
-
Save asicfr/f48cfb7dda27ffd05df6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<!-- | |
* Html5 LocalFileSystem polymer webcomponent | |
* | |
* AOUT 2010 - MAI 2014 | Stephane Labbe | |
* Released under the MIT license | |
* https://github.com/asicfr/polymerFileSystem/blob/master/LICENSE.txt | |
--> | |
<!doctype html> | |
<html class="no-js"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>Html5 LocalFileSystem polymer webcomponent</title> | |
<meta name="description" content=""> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<!-- bootstrap must be import before platform to avoid TypeError: Object #<Object> has no method 'getAttribute' --> | |
<script src="bower_components/jquery/dist/jquery.min.js"></script> | |
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script> | |
<!-- Polymer platform --> | |
<script src="bower_components/platform/platform.js"></script> | |
<!-- Css Bootstrap --> | |
<link href="bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"> | |
<!-- Custom styles for this template --> | |
<link rel="stylesheet" href="styles/main.css" rel="stylesheet"> | |
</head> | |
<body> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment