Skip to content

Commit

Permalink
Add title attribute to some td elements
Browse files Browse the repository at this point in the history
  • Loading branch information
sixcorners committed Jan 15, 2025
1 parent e3af1f3 commit 40bdce3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,10 @@ <h1>Index of /</h1>
<template v-for="repo in repos" :key="repo.id">
<tr v-if="!repo.fork && !repo.archived && !repo.disabled && repo.homepage != location">
<td><a :href="repo.html_url" class="devicon-github-plain"></a>
<td><i :class="`devicon-${devicon[repo.language] ?? repo.language?.toLowerCase()}-plain`"></i>
<td :title="repo.language"><i :class="`devicon-${devicon[repo.language] ?? repo.language?.toLowerCase()}-plain`"></i>
<td><a :href="repo.has_pages ? `https://${repo.owner.login}.github.io/${repo.name}/` : null">{{repo.name}}/</a>
<td>{{repo.created_at.replace(/T.*/, "")}}
<td>{{repo.updated_at.replace(/T.*/, "")}}
<td :title="repo.created_at">{{repo.created_at.replace(/T.*/, "")}}
<td :title="repo.updated_at">{{repo.updated_at.replace(/T.*/, "")}}
<td style="text-align: right">{{kbFmt(repo.size)}}
<td>{{repo.description}}
</template>
Expand Down

0 comments on commit 40bdce3

Please sign in to comment.