ponepaste/theme/bulma/archive.php

58 lines
2 KiB
PHP
Raw Normal View History

2021-09-03 08:00:22 -04:00
<style>
.paginator > a {
margin: 0.25rem;
}
.paginator > a.disabled {
pointer-events: none;
color: gray;
}
</style>
2021-07-10 19:18:17 +01:00
<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">
2021-07-10 19:18:17 +01:00
<div class="message-body">
2022-01-06 07:58:29 -05:00
There are <strong><?= $total_untagged ?></strong> pastes that still need to be tagged.
2021-07-10 19:18:17 +01:00
</div>
</article>
2021-10-15 20:38:36 -04:00
<?php if ($site_is_private): ?>
2021-08-26 05:35:21 -04:00
<h1 class="title is-5">This pastebin is private.</h1>
2021-10-15 20:38:36 -04:00
<?php else: ?>
2021-08-26 05:35:21 -04:00
<h1 class="title is-4">Pastes Archive</h1>
2022-01-06 07:58:29 -05:00
<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>
2021-09-03 08:00:22 -04:00
<tr>
<th>Title</th>
<th>Author</th>
<th>Tags</th>
</tr>
</thead>
2021-08-26 05:58:37 -04:00
<tbody>
<!-- <i class="fa fa-spinner fa-spin fa-3x fa-fw"></i><span class="sr-only">Loading...</span>-->
2021-09-03 08:00:22 -04:00
<!-- Filled by DataTables -->
2021-08-26 05:58:37 -04:00
</tbody>
<tfoot>
2021-09-03 08:00:22 -04:00
<tr>
<th>Title</th>
<th>Author</th>
<th>Tags</th>
</tr>
</tfoot>
</table>
2021-07-10 18:21:03 -04:00
2021-09-03 08:00:22 -04:00
<div class="paginator"></div>
</div>
2021-10-15 20:38:36 -04:00
<?php endif; ?>
</div>
</div>
2022-01-06 07:58:29 -05:00
</main>