koblog/bl-themes/defaultTheme/php/page.php
2025-07-13 19:50:33 +02:00

68 lines
2.4 KiB
PHP

<!-- Post -->
<article id="article-solo">
<!-- Load Koblog Plugins: Page Begin -->
<?php Theme::plugins('pageBegin'); ?>
<!-- Title -->
<h2 class="title">
<a href="<?php echo $page->permalink(); ?>"><?php echo $page->title(); ?></a>
</h2>
<!-- Cover image -->
<?php if ($page->coverImage()) : ?>
<img class="cover-image" alt="" src="<?php echo $page->coverImage(); ?>" />
<?php endif ?>
<!-- Creation date -->
<div class="article-metadata flex p">
<?php if (!$page->isStatic() && !$url->notFound()) : ?>
<div><time><?php echo $page->date(); ?></time></div>
<div><?php echo $L->get('Reading time') . ': ' . $page->readingTime(); ?></div>
</div>
<?php endif ?>
<!-- Full content -->
<div class="article-body">
<?php echo $page->content(); ?>
</div>
<?php if (!$page->isStatic() && !$url->notFound()) : ?>
<div class="flex p" id="tag-category-list">
<div id="category-list">
<a href="<?php echo $page->categoryPermalink(); ?>" class="category pill"><?php echo $page->category(); ?></a>
</div>
<div id="tag-list">
<?php foreach ($page->tags(true) as $key => $value) : ?>
<?php $tagObject = new Tag($key); ?>
<a href="<?php echo $tagObject->permalink();?>" class="tag pill" rel="tag directory">
<?php echo $value; ?>
</a>
<?php endforeach ?>
</div>
</div>
<div class="card author-area p-author h-card">
<div class="author-identity">
<img alt="" class="avatar" src="<?php echo ($page->user('profilePicture'));?>" height="64" width="64" decoding="async">
<div class="author-metadata">
<div class="author-pseudo">
Écrit par <a href="https://kazhnuz.space" class="u-url p-name"><?php echo $page->user('displayName'); ?></a>
<span class="pill"><?php echo $page->user('pronouns'); ?></span>
</div>
<div class="p-note"><?php echo $page->user('description'); ?></div>
</div>
</div>
<ul class="author-links">
<?php if ($page->user('homepage')):?>
<li><a href="<?php echo ($page->user('homepage'));?>">Homepage</a> </li>
<?php endif ?>
<?php foreach ($page->user('socials') as $key => $social):?>
<li><a href="<?php echo ($social->url);?>"><?php echo $social->name; ?></a> </li>
<?php endforeach ?>
</ul>
</div>
<?php endif ?>
<!-- Load Koblog Plugins: Page End -->
<?php Theme::plugins('pageEnd'); ?>
</article>