12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <%- partial('partials/sidebar', { type: page.type, index: page.index }) %>
- <div class="Content js-Content <%- page.type ? page.type + ' with-sidebar' : '' %>">
- <h1><%- page.title %> Example</h1>
- <%- page.content %>
- <p>Please see <a href="/docs/">documentation</a> for details.</p>
- <hr>
- <p>Hey there stranger! Uppy <img src="/images/emojis/dog.png" width="14" align="absmiddle">
- is actively developed and the example section
- is our playground. Things might not work, but we're working hard to improve.</p>
- <p>We're on a monthly release cycle and our latest version is
- <a href="https://github.com/transloadit/uppy/blob/master/CHANGELOG.md#<%- theme.uppy_version_anchor %>">v<%- theme.uppy_version %></a>,
- but the example pages reflect the latest work in our master branch. Here's
- <a href="https://github.com/transloadit/uppy/compare/v<%- theme.uppy_version %>...master">what changed in master since v<%- theme.uppy_version %></a>
- in terms of commits, while the CHANGELOG
- provides a higher level view of the things planned for our
- <a href="https://github.com/transloadit/uppy/blob/master/CHANGELOG.md#next">next release</a>.</p>
- <!-- Add textarea already so it's available immediately for logging.
- It is later made visible, and moved into the #console-wrapper to position it in layout how
- you see fit. -->
- <blockquote>Files from the examples are uploaded to our test servers and deleted daily.</blockquote>
- <textarea id="console-log" class="Console"></textarea>
- <script>
- console.log = (function (log, container) {
- return function (text) {
- log(text);
- if (text !== (text + '')) {
- text = JSON.stringify(text);
- }
- container.value += text + '\n';
- container.scrollTop = container.scrollHeight;
- };
- }(console.log.bind(console), document.getElementById("console-log")));
- </script>
- <script>
- // #console-log textarea is declared earlier so it's available immediately for logging.
- // Here it is made visible, and moved into the #console-wrapper, so you can position it in the layout how
- // you see fit.
- document.getElementById('console-wrapper').appendChild(document.getElementById('console-log'));
- document.getElementById('console-log').style.display = 'block';
- </script>
- <div class="footer">Caught a mistake or want to contribute to the documentation?
- <a href="https://github.com/transloadit/uppy/blob/master/website/src/<%- page.source %>" rel="noreferrer noopener" target="_blank">Edit/fork this page directly on Github</a>!
- </div>
- </div>
|