1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,44 @@ |
1 |
+ |
|
2 |
+<div class="<?= $this->class ?><?= $this->articleLayoutClass ? ' ' . $this->articleLayoutClass: '' ?><?= $this->maxWidth ? ' mw-centered' : '' ?><?= $this->center ? ' tac' : '' ?> block"<?= $this->cssID ?><?php if ($this->style): ?> style="<?= $this->style ?>"<?php endif; ?>> |
|
3 |
+ <div class="inside"> |
|
4 |
+ <?php if ($this->useHelper): ?><div class="inside-helper"><?php endif; ?> |
|
5 |
+ |
|
6 |
+ <?php if ($this->printable): ?> |
|
7 |
+ <!-- indexer::stop --> |
|
8 |
+ <div class="pdf_link"> |
|
9 |
+ |
|
10 |
+ <?php if ($this->printButton): ?> |
|
11 |
+ <a href="<?= $this->print ?>" rel="nofollow" title="<?= $this->printTitle ?>" onclick="window.print();return false"><img src="<?= TL_FILES_URL ?>assets/contao/images/print.gif" width="16" height="16" alt=""></a> |
|
12 |
+ <?php endif; ?> |
|
13 |
+ |
|
14 |
+ <?php if ($this->pdfButton): ?> |
|
15 |
+ <a href="<?= $this->href ?>" rel="nofollow" title="<?= $this->pdfTitle ?>"><img src="<?= TL_FILES_URL ?>assets/contao/images/pdf.gif" width="16" height="16" alt=""></a> |
|
16 |
+ <?php endif; ?> |
|
17 |
+ |
|
18 |
+ <?php if ($this->facebookButton): ?> |
|
19 |
+ <a href="share/?p=facebook&u=<?= $this->encUrl ?>&t=<?= $this->encTitle ?>" rel="nofollow" title="<?= $this->facebookTitle ?>" onclick="window.open(this.href,'','width=640,height=380,modal=yes,left=100,top=50,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no');return false"><img src="<?= TL_FILES_URL ?>assets/contao/images/facebook.gif" width="16" height="16" alt=""></a> |
|
20 |
+ <?php endif; ?> |
|
21 |
+ |
|
22 |
+ <?php if ($this->twitterButton): ?> |
|
23 |
+ <a href="share/?p=twitter&u=<?= $this->encUrl ?>&t=<?= $this->encTitle ?>" rel="nofollow" title="<?= $this->twitterTitle ?>" onclick="window.open(this.href,'','width=640,height=380,modal=yes,left=100,top=50,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no');return false"><img src="<?= TL_FILES_URL ?>assets/contao/images/twitter.gif" width="16" height="16" alt=""></a> |
|
24 |
+ <?php endif; ?> |
|
25 |
+ |
|
26 |
+ <?php if ($this->gplusButton): ?> |
|
27 |
+ <a href="share/?p=gplus&u=<?= $this->encUrl ?>&t=<?= $this->encTitle ?>" rel="nofollow" title="<?= $this->gplusTitle ?>" onclick="window.open(this.href,'','width=600,height=200,modal=yes,left=100,top=50,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no');return false"><img src="<?= TL_FILES_URL ?>assets/contao/images/gplus.gif" width="16" height="16" alt=""></a> |
|
28 |
+ <?php endif; ?> |
|
29 |
+ |
|
30 |
+ </div> |
|
31 |
+ <!-- indexer::continue --> |
|
32 |
+ <?php endif; ?> |
|
33 |
+ |
|
34 |
+ <?= implode('', $this->elements) ?> |
|
35 |
+ |
|
36 |
+ <?php if ($this->backlink): ?> |
|
37 |
+ <!-- indexer::stop --> |
|
38 |
+ <p class="back"><a href="<?= $this->backlink ?>" title="<?= $this->back ?>"><?= $this->back ?></a></p> |
|
39 |
+ <!-- indexer::continue --> |
|
40 |
+ <?php endif; ?> |
|
41 |
+ |
|
42 |
+ <?php if ($this->useHelper): ?></div><?php endif; ?> |
|
43 |
+ </div> |
|
44 |
+</div> |