Browse Source

Add naked `/uppy` page to the website

Artur Paikin 9 years ago
parent
commit
ff7a7b3426
1 changed files with 24 additions and 0 deletions
  1. 24 0
      website/src/uppy.ejs

+ 24 - 0
website/src/uppy.ejs

@@ -0,0 +1,24 @@
+---
+layout: false
+title: Uppy
+permalink: uppy/
+---
+
+<!doctype html>
+<html>
+  <head>
+    <meta charset="utf-8">
+    <title>uppy</title>
+  </head>
+  <body>
+    <h1>Uppy is here</h1>
+    <link href="uppy.min.css" rel="stylesheet">
+    <script src="uppy.min.js"></script>
+    <script src="locales/ru_RU.min.js"></script>
+    <script>
+      var uppy = new Uppy.Core({locales: Uppy.locales.ru_RU, debug: true});
+      uppy.use(Uppy.plugins.DragDrop, {target: 'body'});
+      uppy.run();
+    </script>
+  </body>
+</html>