Fix rel links
This commit is contained in:
parent
d55c051104
commit
0ea7764dd6
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<a v-bind:href="actor.url" target="_blank" class="actor" v-bind:title="linkTitle">
|
<a v-bind:href="actor.url" rel="nofollow noreferrer noopener" target="_blank" class="actor" v-bind:title="linkTitle">
|
||||||
<img v-if="actor.avatar" v-bind:src="actor.avatar.url" alt="">
|
<img v-if="actor.avatar" v-bind:src="actor.avatar.url" alt="">
|
||||||
|
|
||||||
<strong>{{ actor.displayName }}</strong>
|
<strong>{{ actor.displayName }}</strong>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="channel root-result">
|
<div class="channel root-result">
|
||||||
|
|
||||||
<a target="_blank" v-bind:href="channel.url" :title="discoverChannelMessage" class="avatar">
|
<a target="_blank" rel="nofollow noreferrer noopener" v-bind:href="channel.url" :title="discoverChannelMessage" class="avatar">
|
||||||
<img v-if="channel.avatar" v-bind:src="channel.avatar.url" alt="">
|
<img v-if="channel.avatar" v-bind:src="channel.avatar.url" alt="">
|
||||||
<img v-else src="/img/default-avatar.png" alt="">
|
<img v-else src="/img/default-avatar.png" alt="">
|
||||||
</a>
|
</a>
|
||||||
|
@ -9,7 +9,7 @@
|
||||||
<div class="information">
|
<div class="information">
|
||||||
<div class="title-block">
|
<div class="title-block">
|
||||||
<h5 class="title">
|
<h5 class="title">
|
||||||
<a target="_blank" v-bind:href="channel.url" :title="discoverChannelMessage">
|
<a target="_blank" rel="nofollow noreferrer noopener" v-bind:href="channel.url" :title="discoverChannelMessage">
|
||||||
{{ channel.displayName }}
|
{{ channel.displayName }}
|
||||||
</a>
|
</a>
|
||||||
</h5>
|
</h5>
|
||||||
|
@ -26,7 +26,7 @@
|
||||||
<div class="description">{{ channel.description }}</div>
|
<div class="description">{{ channel.description }}</div>
|
||||||
|
|
||||||
<div class="button">
|
<div class="button">
|
||||||
<a class="button-link" target="_blank" v-bind:href="channel.url">
|
<a class="button-link" rel="nofollow noreferrer noopener" target="_blank" v-bind:href="channel.url">
|
||||||
{{ discoverChannelMessage }}
|
{{ discoverChannelMessage }}
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue