31 lines
396 B
HTML
31 lines
396 B
HTML
<link rel="import" href="../polymer/polymer.html">
|
|
|
|
|
|
<polymer-element name="swipe-page" attributes="">
|
|
|
|
<template>
|
|
|
|
<link rel="stylesheet" href="swipe-page.css" />
|
|
|
|
<div id="pageContainer" class="pageContainer">
|
|
<content></content>
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
<script>
|
|
(function(){
|
|
'use strict';
|
|
|
|
Polymer({
|
|
|
|
});
|
|
|
|
})();
|
|
|
|
|
|
</script>
|
|
|
|
</polymer-element>
|