2019-11-03 00:06:25 +01:00
< ? php
require_once ( __DIR__ . '/../internals/base.php' );
require_once ( __DIR__ . '/../internals/blog.php' );
require_once ( __DIR__ . '/../internals/adventofcode.php' );
$year = $post [ 'extras' ][ 'aoc:year' ];
?>
< div class = " boxedcontent blogcontent_plain " >
< div style = " position: relative; " >
< a href = " <?php echo AdventOfCode::getGithubLink( $year ); ?> " style = " position: absolute; top: 0; right: 0; border: 0; " >
< img src = " /data/images/blog/github_band.png " alt = " Fork me on GitHub " data - canonical - src = " https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png " >
</ a >
</ div >
< div class = " bc_header " >
< ? php echo $post [ 'date' ]; ?>
</ div >
< div class = " bc_data " >
2019-11-03 15:33:23 +01:00
< ? php echo nl2br ( htmlspecialchars ( Blog :: getPostFragment ( $post ))); ?>
< ? php
global $PARAM_AOCCALENDAR ;
2019-11-03 15:44:47 +01:00
$PARAM_AOCCALENDAR = [ 'year' => $year , 'nav' => true ];
2019-11-03 15:33:23 +01:00
require ( __DIR__ . '/../fragments/panel_aoc_calendar.php' )
?>
2019-11-03 00:06:25 +01:00
</ div >
</ div >