Add sidebar
This commit is contained in:
parent
4fab364632
commit
db26c69ecd
2 changed files with 94 additions and 81 deletions
|
@ -1,5 +1,6 @@
|
|||
.ui.statistics {
|
||||
justify-content: space-around;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
.ui.statistics::after {
|
||||
display: none;
|
||||
|
|
|
@ -18,11 +18,14 @@ $page->navigation();
|
|||
<div class="ui container">
|
||||
<h1 class="ui header"><?= $page->title ?></h1>
|
||||
|
||||
<div class="ui doubling stackable grid">
|
||||
<div class="twelve wide column">
|
||||
<div class="ui segment">
|
||||
<h2 class="ui header"><?= __('Welcome to wishthis') ?></h2>
|
||||
|
||||
<p><?= __('wishthis is a simple, intuitive and modern wishlist platform to create, manage and view your wishes for any kind of occasion.') ?></p>
|
||||
|
||||
<div class="ui four column doubling stackable centered grid">
|
||||
<div class="ui two column doubling stackable centered grid">
|
||||
<?php if ($user->isLoggedIn()) { ?>
|
||||
<div class="column">
|
||||
<a class="ui fluid primary button"
|
||||
|
@ -63,11 +66,13 @@ $page->navigation();
|
|||
|
||||
<div class="ui segment">
|
||||
<h2 class="ui header"><?= __('Use case') ?></h2>
|
||||
|
||||
<p><?= __('Your birthday is coming up and you just created a wishlist with all the cool stuff you want. Your friends and family want to make sure you get something you are happy with so you send them your wishlist link and if anybody decides to fulfil one of your wishes, it will disappear for everybody else.') ?></p>
|
||||
</div>
|
||||
|
||||
<div class="ui segment">
|
||||
<h2 class="ui header"><?= __('Why wishthis?') ?></h2>
|
||||
|
||||
<p><?= sprintf(
|
||||
__('wishthis is free and open source software. With free I don\'t just mean, you don\'t have to pay money to use it, but you are also not paying with your personal information and behaviour. Not only can anybody %sview and verify its code%s, I also encourage you to do so.'), '<a href="https://github.com/grandeljay/wishthis" title="wishthis source code" target="_blank">', '</a>'
|
||||
) ?></p>
|
||||
|
@ -87,8 +92,15 @@ $page->navigation();
|
|||
<div class="content"><?= __('open for feedback and suggestions.') ?></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="four wide column">
|
||||
<div class="ui segment">
|
||||
<h2 class="ui header"><?= __('Statistics') ?></h2>
|
||||
|
||||
<p><?= __('Join the others and get started now!') ?></p>
|
||||
|
||||
<h3><?= __('Join the others and get started now!') ?></h3>
|
||||
<div class="ui stackable statistics">
|
||||
|
||||
<div class="statistic" id="wishes">
|
||||
|
@ -105,9 +117,9 @@ $page->navigation();
|
|||
<div class="value"><?= __('N. A.') ?></div>
|
||||
<div class="label"><?= __('Registered users') ?></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
|
Loading…
Reference in a new issue