Make grid item title clickable

This commit is contained in:
Skylar Ittner 2018-02-13 23:00:06 -07:00
parent a3fac92866
commit 6ced321868
2 changed files with 9 additions and 3 deletions

View File

@ -116,9 +116,11 @@ redirectifnotloggedin();
}
</style>
<div class="card mt-1" id="pub_card_<?php echo $p['pubid']; ?>">
<a href="app.php?page=content&pubid=<?php echo $p['pubid']; ?>" class="no-underline">
<h5 class="card-header">
<?php echo htmlspecialchars($p['pubname']); ?>
</h5>
</a>
<div class="card-body">
<ul class="list-group">
<li class="list-group-item">

View File

@ -44,3 +44,7 @@ body {
margin-top: 10em;
text-align: center;
}
.no-underline, .no-underline:hover {
text-decoration: none;
}