Add book Tier-List
This commit is contained in:
+5
-19
@@ -33,22 +33,6 @@ $FRAME_OPTIONS->activeHeader = 'about';
|
||||
|
||||
<!-- - - - - - - - - - - - - - - - - - - - - -->
|
||||
|
||||
<div class="boxedcontent">
|
||||
<div class="bc_header">My git timeline</div>
|
||||
|
||||
<div class="bc_data about_egg_container">
|
||||
|
||||
<?php
|
||||
$FRAME_OPTIONS->addScript('/data/javascript/extendedgitgraph.js', true);
|
||||
echo $SITE->modules->ExtendedGitGraph()->get();
|
||||
?>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- - - - - - - - - - - - - - - - - - - - - -->
|
||||
|
||||
<div class="boxedcontent">
|
||||
<div class="bc_header">Other addresses</div>
|
||||
|
||||
@@ -110,11 +94,13 @@ $FRAME_OPTIONS->activeHeader = 'about';
|
||||
<!-- - - - - - - - - - - - - - - - - - - - - -->
|
||||
|
||||
<div class="boxedcontent">
|
||||
<div class="bc_header">Reading history (incomplete :/)</div>
|
||||
<div class="bc_header">Blackforestbytes</div>
|
||||
|
||||
<div class="bc_data about_ehr_container">
|
||||
<div class="bc_data about_bfb">
|
||||
|
||||
<?php echo $SITE->modules->EbookHistory()->get(); ?>
|
||||
<a href="https://blackforestbytes.com">
|
||||
<img src="/data/images/bfb.svg" alt="Blackforestbytes" />
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
@@ -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>
|
||||
@@ -0,0 +1,35 @@
|
||||
<?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 = 'VCS';
|
||||
$FRAME_OPTIONS->canonical_url = 'https://www.mikescher.com/vcs';
|
||||
$FRAME_OPTIONS->activeHeader = 'vcs';
|
||||
?>
|
||||
|
||||
<div class="aboutcontent">
|
||||
|
||||
<div class="contentheader"><h1>My git timeline</h1><hr/></div>
|
||||
|
||||
<!-- - - - - - - - - - - - - - - - - - - - - -->
|
||||
|
||||
<div class="boxedcontent">
|
||||
<div class="bc_header">My git timeline</div>
|
||||
|
||||
<div class="bc_data about_egg_container">
|
||||
|
||||
<?php
|
||||
$FRAME_OPTIONS->addScript('/data/javascript/extendedgitgraph.js', true);
|
||||
echo $SITE->modules->ExtendedGitGraph()->get();
|
||||
?>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
Reference in New Issue
Block a user