-
Notifications
You must be signed in to change notification settings - Fork 136
/
Copy pathview.phtml
63 lines (61 loc) · 2.17 KB
/
view.phtml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
/**
* Copyright © Magefan ([email protected]). All rights reserved.
* Please visit Magefan.com for license details (https://magefan.com/end-user-license-agreement).
*
* Glory to Ukraine! Glory to the heroes!
*/
?>
<?php
/**
* Blog post view template
*
* @var $block \Magefan\Blog\Block\Post\View
*/
?>
<?php
$_post = $block->getPost();
$_postUrl = $_post->getPostUrl();
$_postName = $block->escapeHtml($_post->getTitle(), null);
$width = (int)$block->getWidth() ?: 800;
$height = (int)$block->getHeight() ?: 500;
?>
<div class="post-view">
<div class="post-holder post-holder-<?= (int)$_post->getId() ?>">
<div class="post-header clearfix">
<div class="addthis_toolbox addthis_default_style" addthis:url="<?= $block->escapeUrl($_postUrl) ?>">
<a class="addthis_button_facebook"></a>
<a class="addthis_button_twitter"></a>
<a class="addthis_button_email"></a>
<a class="addthis_button_compact"></a>
</div>
<?= $block->getInfoHtml() ?>
</div>
<div class="post-content">
<div class="post-description clearfix">
<?php if ($featuredImage = $_post->getFeaturedImage()) { ?>
<?php
$featuredImgAlt = $_post->getData('featured_img_alt');
if (!$featuredImgAlt) {
$featuredImgAlt = $_postName;
}
?>
<div class="post-ftimg-hld">
<img src="<?= $block->escapeUrl($featuredImage) ?>"
alt="<?= $block->escapeHtml($featuredImgAlt) ?>"
width="<?= $width ?>"
height="<?= $height ?>"
/>
</div>
<?php } ?>
<div class="post-text-hld">
<?= /*@noEscape*/ $block->getContent() ?>
<div class="clear clearfix"></div>
</div>
</div>
</div>
<div class="post-bottom">
<?= $block->getChildHtml('blog.post.bottom') ?>
</div>
</div>
</div>