forked from genzstaking/dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'razi-jafari' of https://github.com/genzstaking/dashboard …
…into razi-jafari
- Loading branch information
Showing
75 changed files
with
151,111 additions
and
1,544 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. | ||
# yarn lockfile v1 | ||
|
||
|
||
yarn-path ".yarn/releases/yarn-1.22.19.cjs" |
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<templates xml:space="preserve"> | ||
|
||
<t t-name="components.sidebar" owl="1"> | ||
<ul id="accordionSidebar" | ||
class="navbar-nav bg-gradient-primary sidebar sidebar-dark accordion"> | ||
<SidebarBrand /> | ||
<SidebarDivider /> | ||
|
||
<t t-foreach="state.routers" t-key="props.id" t-as="router"> | ||
<t t-foreach="router.props.routes" t-key="route" t-as="page"> | ||
<li class="nav-item active"> | ||
<a class="nav-link" | ||
t-att-href="'#' + page.route"> | ||
<img | ||
class="p-1" | ||
width="24px" | ||
t-att-src="page.logo" /> | ||
<spam t-esc="page.title" /> | ||
</a> | ||
</li> | ||
</t> | ||
</t> | ||
|
||
<SidebarMessage> | ||
<img | ||
class="sidebar-card-illustration mb-2" | ||
src="./img/logo.svg" | ||
alt="Stack with GenZ Staking" /> | ||
<p class="text-center mb-2"><strong>GenZ Staking</strong> group supports with premium features, partnership program, and more!</p> | ||
<a | ||
class="btn btn-success btn-sm" | ||
href="//genzstaking.com/">Stake With Us!</a> | ||
</SidebarMessage> | ||
</ul> | ||
</t> | ||
|
||
<t t-name="components.sidebar.brand" owl="1"> | ||
<a | ||
class="sidebar-brand d-flex align-items-center justify-content-center" | ||
href="#/"> | ||
<div class="sidebar-brand-icon rotate-n-15"> | ||
<i class="fas fa-laugh-wink"></i> | ||
</div> | ||
<div class="sidebar-brand-text mx-3">GenZ Staking</div> | ||
</a> | ||
</t> | ||
|
||
<t t-name="components.sidebar.collapse" owl="1"> | ||
<li class="nav-item"> | ||
<a class="nav-link collapsed" | ||
href="#" | ||
data-bs-toggle="collapse" | ||
t-att-data-bs-target="sid" | ||
aria-expanded="true" | ||
aria-controls="collapseTwo"> | ||
<t t-slot="title" /> | ||
</a> | ||
<div | ||
t-att-id="id" | ||
class="collapse" | ||
aria-labelledby="headingTwo" | ||
data-parent="#accordionSidebar"> | ||
<t t-slot="content"/> | ||
</div> | ||
</li> | ||
</t> | ||
|
||
|
||
|
||
<t t-name="components.sidebar.divider" owl="1"> | ||
<hr class="sidebar-divider my-0" /> | ||
</t> | ||
|
||
<t t-name="components.sidebar.heading" owl="1"> | ||
<div class="sidebar-heading"> | ||
<t t-slot="default"/> | ||
</div> | ||
</t> | ||
|
||
<t t-name="components.sidebar.link" owl="1"> | ||
<li class="nav-item active"> | ||
<a class="nav-link" | ||
t-att-href="props.href"> | ||
<t t-slot="default"/> | ||
</a> | ||
</li> | ||
</t> | ||
|
||
|
||
<t t-name="components.sidebar.message" owl="1"> | ||
<div class="sidebar-card d-none d-lg-flex"><t t-slot="default"/></div> | ||
</t> | ||
</templates> |
Oops, something went wrong.