... | ... |
@@ -2,14 +2,6 @@ |
2 | 2 |
|
3 | 3 |
<?php $this->block('content'); ?> |
4 | 4 |
|
5 |
-<?php if($this->noAvatar):?> |
|
6 |
- <figure class="image_container"> |
|
7 |
- <img src="<?= $this->singleSRC; ?>" width="200" height="200" itemprop="image"> |
|
8 |
- </figure> |
|
9 |
-<?php else: ?> |
|
10 |
- <figure class="image_container"> |
|
11 |
- <?php $this->insert('picture_default', $this->picture); ?> |
|
12 |
- </figure> |
|
13 |
-<?php endif; ?> |
|
5 |
+<?php $this->insert('memberExtension_image', $this->arrData); ?> |
|
14 | 6 |
|
15 | 7 |
<?php $this->endblock(); ?> |
... | ... |
@@ -4,7 +4,7 @@ |
4 | 4 |
|
5 | 5 |
<?php if($this->noAvatar):?> |
6 | 6 |
<figure class="image_container"> |
7 |
- <img src="<?= $this->singleSRC; ?>" itemprop="image"> |
|
7 |
+ <img src="<?= $this->singleSRC; ?>" width="200" height="200" itemprop="image"> |
|
8 | 8 |
</figure> |
9 | 9 |
<?php else: ?> |
10 | 10 |
<figure class="image_container"> |
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,15 @@ |
1 |
+<?php $this->extend('block_searchable'); ?> |
|
2 |
+ |
|
3 |
+<?php $this->block('content'); ?> |
|
4 |
+ |
|
5 |
+<?php if($this->noAvatar):?> |
|
6 |
+ <figure class="image_container"> |
|
7 |
+ <img src="<?= $this->singleSRC; ?>" itemprop="image"> |
|
8 |
+ </figure> |
|
9 |
+<?php else: ?> |
|
10 |
+ <figure class="image_container"> |
|
11 |
+ <?php $this->insert('picture_default', $this->picture); ?> |
|
12 |
+ </figure> |
|
13 |
+<?php endif; ?> |
|
14 |
+ |
|
15 |
+<?php $this->endblock(); ?> |