1
0
Fork 0
mirror of synced 2024-07-03 05:31:38 +12:00
appwrite/app/views/console/index.phtml

47 lines
2.1 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">
<div class="margin-top margin-bottom"><a href="/"><img src="/images/appwrite.svg" height="30" alt="Logo" /></a></div>
<h1 class="margin-bottom">Welcome to Appwrite Console</h1>
<p class="margin-bottom">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
data-service="projects.listProjects"
data-scope="console"
data-event="load,project-create"
data-name="console-projects"
data-success="trigger"
data-success-triggers="projects-load">
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">
<h3 class="margin-bottom">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">
2019-05-12 18:37:44 +12:00
<div data-ls-bind="{{project.name}}" class="text-one-liner margin-bottom-large">&nbsp;</div>
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>