123456789101112131415161718192021222324252627282930313233 |
- <!DOCTYPE html>
- <html xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" layout:decorate="~{layout/layout}">
- <head>
- <title>Home</title>
- </head>
- <body>
- <div layout:fragment="content" class="ui container">
- <br />
- <h2>Opening Day!</h2>
- <p>
- Welcome to our new Asset Store for <a href="http://jmonkeyengine.org/">jMonkeyEngine</a>! All of our assets are created by the jmonkey community
- for free!
- </p>
- <!-- <p>
- This website the result of our first goal being reached on <a href="https://www.patreon.com/jayfella">Patreon</a>. We would like to say a big
- thank you to those that have supported us. We have a dedicated page with your jmonkey username listed here. Once our next goal has been reached
- we will begin to offer <b>paid</b> and <b>sponsored</b> assets!
- </p> -->
- <!-- <p>
- If you would like to support our cause, please <a href="https://www.patreon.com/jayfella">support us on Patreon</a> and help the community
- thrive!
- </p> -->
- <p></p>
- <script>
- $("#brand-name").addClass("active");
- </script>
- </div>
- </body>
- </html>
|