1
0
Fork 0
mirror of synced 2024-07-03 13:41:01 +12:00
appwrite/app/views/console/index.phtml

52 lines
2.4 KiB
PHTML
Raw Normal View History

2019-08-24 19:27:11 +12:00
<?php
$home = $this->getParam('home', '');
?>
2019-05-12 23:20:51 +12:00
<div class="cover" style="background-size: 400px 400px; background-repeat: no-repeat;">
2019-05-09 18:54:39 +12:00
<div class="zone xl">
2020-02-12 02:09:44 +13:00
<div class="margin-top margin-bottom">
<a href="/">
<img src="/images/appwrite.svg" alt="Appwrite Light Logo" class="force-light" height="30" />
2020-02-17 00:41:03 +13:00
<img src="/images/appwrite-footer-dark.svg" alt="Appwrite Dark Logo" class="force-dark" height="30" />
2020-02-12 02:09:44 +13:00
</a>
</div>
2019-05-09 18:54:39 +12:00
<h1 class="margin-bottom">Welcome to Appwrite Console</h1>
2019-12-14 17:15:04 +13:00
<p class="margin-bottom margin-top-negative-small">Start creating projects and take advantage of Appwrite development tools and APIs.</p>
2019-05-09 18:54:39 +12:00
<ul class="margin-bottom-xl clear">
2019-08-25 05:48:11 +12:00
<li class="pull-start margin-end"><a href="<?php echo $home; ?>/" target="_blank"><i class="icon-lamp"></i> &nbsp;Learn More</a></li>
2019-08-24 19:27:11 +12:00
<li class="pull-start margin-end"><a href="<?php echo $home; ?>/docs" target="_blank"><i class="icon-book-open"></i> &nbsp;Documentation</a></li>
<li class="pull-start margin-end"><a href="<?php echo $home; ?>/support" target="_blank"><i class="icon-lifebuoy"></i> &nbsp;Support</a></li>
2019-05-09 18:54:39 +12:00
</ul>
</div>
</div>
<section class="zone xl margin-bottom-large margin-top-negative-large">
2019-08-08 06:10:53 +12:00
<div
2020-01-31 06:12:29 +13:00
data-service="projects.list"
2019-08-08 06:10:53 +12:00
data-scope="console"
2020-01-31 09:58:49 +13:00
data-event="load,projects.create"
2019-08-08 06:10:53 +12:00
data-name="console-projects"
data-success="trigger"
2020-01-31 09:58:49 +13:00
data-success-param-trigger-events="projects.list">
2019-05-09 18:54:39 +12:00
2019-08-10 17:41:27 +12:00
<div data-ls-if="0 == {{console-projects.length}}" class="box margin-bottom" style="display: none">
2020-02-04 20:14:03 +13:00
<h3 class="margin-bottom-small text-bold-2">Get Started</h3>
2019-05-13 01:03:30 +12:00
2019-08-10 17:41:27 +12:00
<p class="margin-bottom-no">No Projects Found, Create your first project now.</p>
2019-05-13 01:03:30 +12:00
</div>
2019-08-10 17:41:27 +12:00
<ul data-ls-loop="console-projects" data-ls-as="project" data-ls-append="" class="tiles cell-3" style="visibility: hidden">
2019-05-09 18:54:39 +12:00
<li class="margin-bottom">
2019-05-10 04:15:51 +12:00
<a data-ls-attrs="href=/console/home?project={{project.$uid}}" class="box">
2020-02-05 10:00:34 +13:00
<div data-ls-bind="{{project.name}}" class="text-one-liner margin-bottom-large text-bold">&nbsp;</div>
2019-05-12 18:37:44 +12:00
2019-05-09 18:54:39 +12:00
<i class="icon-right-open"></i>
</a>
</li>
</ul>
2019-08-14 09:21:44 +12:00
<button data-ls-ui-trigger="create-project">Create Project</button>
2019-05-09 18:54:39 +12:00
</div>
</section>