Skip to content

Commit

Permalink
Merge pull request #141 from Phixyn/125/remove-title-from-links
Browse files Browse the repository at this point in the history
Remove unnecessary title attributes
  • Loading branch information
Phixyn committed Nov 16, 2020
2 parents db0cbed + 2784bec commit d446ca7
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/components/Carousel.vue
Expand Up @@ -26,7 +26,6 @@
<img
:src="carousel.image"
:alt="carousel.alt"
:title="carousel.title"
/>
</figure> <!-- .image .is-fullwidth -->
</b-carousel-item>
Expand Down
2 changes: 0 additions & 2 deletions src/components/ProjectCard.vue
Expand Up @@ -11,7 +11,6 @@
<img
:src="project.cover_image.url"
:alt="project.cover_image.alt"
:title="project.cover_image.caption"
/>
</figure>
</div> <!-- .card-image -->
Expand All @@ -28,7 +27,6 @@
<span v-if="project.repository_url">
<a
:href="project.repository_url"
:title="`${project.name}'s public GitHub repository`"
target="_blank"
>GitHub</a>
&bull;
Expand Down
1 change: 0 additions & 1 deletion src/templates/Project.vue
Expand Up @@ -55,7 +55,6 @@
<p v-if="$page.strapi.projects[0].repository_url">
<a
:href="$page.strapi.projects[0].repository_url"
title="Project repository"
target="_blank"
>
{{ $page.strapi.projects[0].repository_url }}
Expand Down

0 comments on commit d446ca7

Please sign in to comment.