mirror of
https://github.com/jlengrand/fuzzy-date.git
synced 2026-03-10 08:21:23 +00:00
31 lines
924 B
HTML
31 lines
924 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes">
|
|
|
|
<title>fuzzy-date demo</title>
|
|
|
|
<script src="../../webcomponentsjs/webcomponents-loader.js"></script>
|
|
|
|
<link rel="import" href="../../iron-demo-helpers/demo-pages-shared-styles.html">
|
|
<link rel="import" href="../../iron-demo-helpers/demo-snippet.html">
|
|
<link rel="import" href="../fuzzy-date.html">
|
|
|
|
<custom-style>
|
|
<style is="custom-style" include="demo-pages-shared-styles">
|
|
</style>
|
|
</custom-style>
|
|
</head>
|
|
<body>
|
|
<div class="vertical-section-container centered">
|
|
<h3>Basic fuzzy-date demo</h3>
|
|
<demo-snippet>
|
|
<template>
|
|
<fuzzy-date date="Wed Mar 14 2018 08:21:25 GMT+0100 (CET)"></fuzzy-date>
|
|
</template>
|
|
</demo-snippet>
|
|
</div>
|
|
</body>
|
|
</html>
|