diff options
author | Thomas Lange <code@nerdmind.de> | 2021-06-12 01:37:18 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2021-06-12 01:37:18 +0200 |
commit | f5ce181aa89d295e108bd25cb7c6914cf020d565 (patch) | |
tree | 8f498f457d57f467c255829667cb6afb2f7b9425 /theme/admin/html/page | |
parent | 4c3fc4ab3f012afc48be15193595c6b945496288 (diff) | |
download | blog-f5ce181aa89d295e108bd25cb7c6914cf020d565.tar.gz blog-f5ce181aa89d295e108bd25cb7c6914cf020d565.tar.xz blog-f5ce181aa89d295e108bd25cb7c6914cf020d565.zip |
Show first image from items content
If a item has at least one Markdown image embedded in its content, show
this image within the <blockquote> tag in the item.php template files.
Diffstat (limited to 'theme/admin/html/page')
-rw-r--r-- | theme/admin/html/page/item.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/theme/admin/html/page/item.php b/theme/admin/html/page/item.php index a92b2fd..c61984c 100644 --- a/theme/admin/html/page/item.php +++ b/theme/admin/html/page/item.php @@ -8,6 +8,9 @@ </div> </header> <blockquote cite="<?=$PAGE['URL']?>"> + <?php if(isset($PAGE['FILE']['LIST'][0])): ?> + <img class="item-image" src="<?=$PAGE['FILE']['LIST'][0]?>" alt="" /> + <?php endif; ?> <p><?=excerpt($PAGE['BODY']['HTML']())?></p> </blockquote> @@ -26,4 +29,4 @@ <li><a href="<?=Application::getAdminURL("page/delete.php?id={$PAGE['ATTR']['ID']}")?>" title="<?=$Language->text('delete_page')?>"><i class="fa fa-trash-o"></i><span class="hidden"><?=$Language->text('delete_page')?></span></a></li> </ul> </footer> -</article>
\ No newline at end of file +</article> |