mirror of
https://github.com/Neetpone/ponepaste.git
synced 2025-03-12 14:40:09 +01:00
58 lines
No EOL
2 KiB
PHP
58 lines
No EOL
2 KiB
PHP
<style>
|
|
.paginator > a {
|
|
margin: 0.25rem;
|
|
}
|
|
|
|
.paginator > a.disabled {
|
|
pointer-events: none;
|
|
color: gray;
|
|
}
|
|
</style>
|
|
|
|
<main class="bd-main">
|
|
<div class="preloader"></div>
|
|
<div class="bd-side-background"></div>
|
|
<div class="bd-main-container container">
|
|
<div class="bd-duo">
|
|
<div class="bd-lead">
|
|
<article class="message is-info">
|
|
<div class="message-body">
|
|
There are <strong><?= $total_untagged ?></strong> pastes that still need to be tagged.
|
|
</div>
|
|
</article>
|
|
<?php if ($site_is_private): ?>
|
|
<h1 class="title is-5">This pastebin is private.</h1>
|
|
<?php else: ?>
|
|
<h1 class="title is-4">Pastes Archive</h1>
|
|
<div class="table_filterer">
|
|
<label><i class="fa fa-search"></i>
|
|
<input class="search" type="search" name="search" placeholder="Filter..."/>
|
|
</label>
|
|
</div>
|
|
<table id="archive" class="table is-fullwidth is-hoverable">
|
|
<thead>
|
|
<tr>
|
|
<th>Title</th>
|
|
<th>Author</th>
|
|
<th>Tags</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<!-- <i class="fa fa-spinner fa-spin fa-3x fa-fw"></i><span class="sr-only">Loading...</span>-->
|
|
<!-- Filled by DataTables -->
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<th>Title</th>
|
|
<th>Author</th>
|
|
<th>Tags</th>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
|
|
<div class="paginator"></div>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
</main>
|