panel: overview

This commit is contained in:
realaravinth
2021-05-09 19:45:25 +05:30
parent 527724ecda
commit 95bc1feef7
4 changed files with 50 additions and 21 deletions

View File

@@ -6,5 +6,24 @@
<. include!("./help-banner/index.html"); .>
<div class="inner-container">
<ul class="sitekey-list__box">
<h1 class="sitekey-list__title">Your Sitekeys</h1>
<. for sitekey in sitekeys.iter() { .>
<a href="/sitekey/<.= sitekey.key .>/view" class="sitekey-list__item-container">
<li class="sitekey-list__item">
<span class="sitekey-list__name">
<.= sitekey.name .>
</span>
<span class="sitekey-list__key">
<.= sitekey.key .>
</span>
</li>
</a>
<. } .>
</ul>
</div>
<. include!("../components/footers.html"); .>