Use .strong instead of <strong>.

This commit is contained in:
takezoe
2013-09-22 03:27:18 +09:00
parent f30c9f6171
commit 4261b7adbe
19 changed files with 80 additions and 75 deletions

View File

@@ -32,9 +32,9 @@
<tr>
<td>
@if(repository.owner == loginAccount.get.userName){
<a href="@url(repository)"><strong>@repository.name</strong></a>
<a href="@url(repository)"><span class="strong">@repository.name</span></a>
} else {
<a href="@url(repository)">@repository.owner/<strong>@repository.name</strong></a>
<a href="@url(repository)">@repository.owner/<span class="strong">@repository.name</span></a>
}
</td>
</tr>
@@ -57,7 +57,7 @@
@recentRepositories.map { repository =>
<tr>
<td>
<a href="@url(repository)">@repository.owner/<strong>@repository.name</strong></a>
<a href="@url(repository)">@repository.owner/<span class="strong">@repository.name</span></a>
</td>
</tr>
}