ponepaste/theme/bulma/archive.php

84 lines
2.7 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;
}
2022-03-12 13:56:32 -05:00
.paginator__sort > th {
cursor: pointer;
}
.paginator__sort--down, .paginator__sort--up {
background-color: lightblue;
}
.paginator__sort--down:after {
padding-left: 0.25rem;
content: '▼';
}
.paginator__sort--up:after {
padding-left: 0.25rem;
content: '▲';
}
2021-09-03 08:00:22 -04:00
</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>
Show&nbsp;
<select name="per_page">
<option value="10">10</option>
<option value="25">25</option>
<option value="50">50</option>
<option value="100">100</option>
</select>
&nbsp;per page
2022-01-06 07:58:29 -05:00
</div>
<table id="archive" class="table is-fullwidth is-hoverable">
<thead>
2022-03-12 13:56:32 -05:00
<tr class="paginator__sort">
<th data-sort-field="title">Title</th>
<th data-sort-field="author">Author</th>
<th data-sort-field="tags">Tags</th>
2021-09-03 08:00:22 -04:00
</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>