aboutsummaryrefslogtreecommitdiffstats
path: root/theme/admin/html/post
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2021-06-12 01:37:18 +0200
committerThomas Lange <code@nerdmind.de>2021-06-12 01:37:18 +0200
commitf5ce181aa89d295e108bd25cb7c6914cf020d565 (patch)
tree8f498f457d57f467c255829667cb6afb2f7b9425 /theme/admin/html/post
parent4c3fc4ab3f012afc48be15193595c6b945496288 (diff)
downloadblog-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/post')
-rw-r--r--theme/admin/html/post/item.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/theme/admin/html/post/item.php b/theme/admin/html/post/item.php
index 8258d30..ae06752 100644
--- a/theme/admin/html/post/item.php
+++ b/theme/admin/html/post/item.php
@@ -8,6 +8,9 @@
</div>
</header>
<blockquote cite="<?=$POST['URL']?>">
+ <?php if(isset($POST['FILE']['LIST'][0])): ?>
+ <img class="item-image" src="<?=$POST['FILE']['LIST'][0]?>" alt="" />
+ <?php endif; ?>
<p><?=excerpt($POST['BODY']['HTML']())?></p>
</blockquote>
@@ -26,4 +29,4 @@
<li><a href="<?=Application::getAdminURL("post/delete.php?id={$POST['ATTR']['ID']}")?>" title="<?=$Language->text('delete_post')?>"><i class="fa fa-trash-o"></i><span class="hidden"><?=$Language->text('delete_post')?></span></a></li>
</ul>
</footer>
-</article> \ No newline at end of file
+</article>