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> </style>
<div class="card mt-1" id="pub_card_<?php echo $p['pubid']; ?>"> <div class="card mt-1" id="pub_card_<?php echo $p['pubid']; ?>">
<h5 class="card-header"> <a href="app.php?page=content&pubid=<?php echo $p['pubid']; ?>" class="no-underline">
<?php echo htmlspecialchars($p['pubname']); ?> <h5 class="card-header">
</h5> <?php echo htmlspecialchars($p['pubname']); ?>
</h5>
</a>
<div class="card-body"> <div class="card-body">
<ul class="list-group"> <ul class="list-group">
<li class="list-group-item"> <li class="list-group-item">

View File

@ -43,4 +43,8 @@ body {
.footer { .footer {
margin-top: 10em; margin-top: 10em;
text-align: center; text-align: center;
}
.no-underline, .no-underline:hover {
text-decoration: none;
} }