Skip to content
Snippets Groups Projects
Commit 2b586eb9 authored by Jan-Christoph Borchardt's avatar Jan-Christoph Borchardt
Browse files

correct target blank from image to link

parent c14f0b56
No related branches found
No related tags found
No related merge requests found
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment