correct target blank from image to link
This commit is contained in:
parent
c14f0b5637
commit
2b586eb91c
1 changed files with 6 additions and 6 deletions
|
@ -12,14 +12,14 @@
|
|||
|
||||
<div class="clientsbox">
|
||||
<h2><?php echo $l->t('Get the apps to sync your files');?></h2>
|
||||
<a href="<?php echo $_['clients']['desktop']; ?>">
|
||||
<img target="_blank" src="<?php echo OCP\Util::imagePath('core', 'desktopapp.png'); ?>" />
|
||||
<a href="<?php echo $_['clients']['desktop']; ?>" target="_blank">
|
||||
<img src="<?php echo OCP\Util::imagePath('core', 'desktopapp.png'); ?>" />
|
||||
</a>
|
||||
<a href="<?php echo $_['clients']['android']; ?>">
|
||||
<img target="_blank" src="<?php echo OCP\Util::imagePath('core', 'googleplay.png'); ?>" />
|
||||
<a href="<?php echo $_['clients']['android']; ?>" target="_blank">
|
||||
<img src="<?php echo OCP\Util::imagePath('core', 'googleplay.png'); ?>" />
|
||||
</a>
|
||||
<a href="<?php echo $_['clients']['ios']; ?>">
|
||||
<img target="_blank" src="<?php echo OCP\Util::imagePath('core', 'appstore.png'); ?>" />
|
||||
<a href="<?php echo $_['clients']['ios']; ?>" target="_blank">
|
||||
<img src="<?php echo OCP\Util::imagePath('core', 'appstore.png'); ?>" />
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Reference in a new issue