Merge pull request #114 from stisa/postlink

Make date a link to the post
This commit is contained in:
Dominik Picheta 2018-02-18 21:52:57 +00:00 committed by GitHub
commit fa7bc2ec39
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View file

@ -170,7 +170,7 @@
#except EParseError:
# c.errorMsg = getCurrentExceptionMsg()
#end
<span class="date">${xmlEncode(%postCreation)}</span>
<span class="date"><a href="${c.genThreadUrl(%postId, "", $threadId, $(c.pageNum))}">${xmlEncode(%postCreation)}</a></span>
</div>
</div>
</div>

View file

@ -751,3 +751,7 @@ blockquote p {
.failedComp {
color: lightcoral;
}
.date > a, .date > a:hover, .date > a:visited {
color: #3D3D3D !important;
text-decoration: none !important;
}