feat: #495 make last post text on categories view clickable

main
psychobunny 5 years ago
parent d2d2c75ab5
commit eff0270da0

@ -287,3 +287,18 @@ a.permalink {
font-size: 16px;
}
}
.background-link-container {
position: relative;
a {
position: relative;
}
a.background-link {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
}
}

@ -1,7 +1,8 @@
<div class="card" style="border-color: {../bgColor}">
<div class="card background-link-container" style="border-color: {../bgColor}">
{{{each ./posts}}}
<!-- IF @first -->
<div component="category/posts">
<a class="background-link" href="{config.relative_path}/topic/{../topic.slug}<!-- IF ../index -->/{../index}<!-- ENDIF ../index -->"></a>
<p>
<a href="{config.relative_path}/user/{../user.userslug}">{buildAvatar(posts.user, "sm", true)}</a>
<a class="permalink" href="{config.relative_path}/topic/{../topic.slug}<!-- IF ../index -->/{../index}<!-- ENDIF ../index -->">

Loading…
Cancel
Save