# HG changeset patch # User Kim Alvefur # Date 1570978612 -7200 # Node ID cc6f7e2e4a59c32536ea77c852217d13240a74e8 # Parent 4c7d275421616a7884034a01edd9aa004c76b22d mod_http_muc_log: Add arrow to 'latest' link like on other navigation diff -r 4c7d27542161 -r cc6f7e2e4a59 mod_http_muc_log/http_muc_log.html --- a/mod_http_muc_log/http_muc_log.html Sun Oct 13 16:55:57 2019 +0200 +++ b/mod_http_muc_log/http_muc_log.html Sun Oct 13 16:56:52 2019 +0200 @@ -27,6 +27,7 @@ nav .next{float:right;} nav .next::after{content:" →";} nav .prev::before{content:"← ";} +nav .last::after{content:" ⇥";} nav :empty::after,nav :empty::before{content:""} table{display:inline-block; margin:1ex 1em;vertical-align:top;} th{font-size:x-small} diff -r 4c7d27542161 -r cc6f7e2e4a59 mod_http_muc_log/mod_http_muc_log.lua --- a/mod_http_muc_log/mod_http_muc_log.lua Sun Oct 13 16:55:57 2019 +0200 +++ b/mod_http_muc_log/mod_http_muc_log.lua Sun Oct 13 16:56:52 2019 +0200 @@ -248,7 +248,7 @@ years = years; links = { { href = "../", rel = "up", text = "Room list" }, - { href = "latest", text = "Latest" }, + { href = "latest", rel = "last", text = "Latest" }, }; }); end