35 lines
969 B
Plaintext
35 lines
969 B
Plaintext
@page "/library/character-templates"
|
|
|
|
<NavLink class="button-secondary" href="/library/" style="align-self: flex-start;">
|
|
<img src="res/icons/outline/arrows/arrow-left.svg" class="button-icon" />
|
|
Back to Library
|
|
</NavLink>
|
|
|
|
<h1 class="page-title">Character Templates</h1>
|
|
|
|
<div class="library-card-container">
|
|
|
|
<div class="card" onclick="@(() => { })">
|
|
<img src="res/icons/outline/general/plus.svg" class="icon"/>
|
|
<h1>Create</h1>
|
|
<p>Create a new template</p>
|
|
</div>
|
|
|
|
<div class="card" onclick="@(() => { })">
|
|
<img src="res/icons/outline/general/edit.svg" class="icon"/>
|
|
<h1>Manage</h1>
|
|
<p>Manage and edit saved templates</p>
|
|
</div>
|
|
|
|
<div class="card" onclick="@(() => { })">
|
|
<img src="res/icons/outline/general/search.svg" class="icon"/>
|
|
<h1>SessionZeroDB</h1>
|
|
<p>Search online for new templates (NOT FUNCTIONAL)</p>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
@code {
|
|
|
|
} |