1
0

Add book Tier-List
Build Docker and Deploy / Build Docker (push) Successful in 2m10s
Build Docker and Deploy / Deploy to Server (push) Successful in 18s

This commit is contained in:
2026-04-15 17:15:54 +02:00
parent 63989d9bc7
commit 8e0039f6bd
14 changed files with 1495 additions and 806 deletions
+43
View File
@@ -0,0 +1,43 @@
<?php
require_once (__DIR__ . '/../internals/website.php');
/** @var PageFrameOptions $FRAME_OPTIONS */ global $FRAME_OPTIONS;
/** @var URLRoute $ROUTE */ global $ROUTE;
/** @var Website $SITE */ global $SITE;
?>
<?php
$FRAME_OPTIONS->title = 'Reading history';
$FRAME_OPTIONS->canonical_url = 'https://www.mikescher.com/reading';
$FRAME_OPTIONS->activeHeader = 'reading';
?>
<div class="aboutcontent">
<div class="contentheader"><h1>Reading history</h1><hr/></div>
<!-- - - - - - - - - - - - - - - - - - - - - -->
<div class="boxedcontent">
<div class="bc_header">Tierlist <i>(auto-generated from Calibre, probably kinda questionable...)</i></div>
<div class="bc_data about_tier_container">
<?php echo $SITE->modules->EbookHistory()->getTierlist(); ?>
</div>
</div>
<div class="boxedcontent">
<div class="bc_header">Reading history <i>(incomplete :/)</i></div>
<div class="bc_data about_ehr_container">
<?php echo $SITE->modules->EbookHistory()->getHistory(); ?>
</div>
</div>
</div>