in reply to Re^3: RFC: "Today I Learned" page
in thread RFC: "Today I Learned" page

You can 'expose' the timestamp using pryrt's trick in Re^5: RFC: "Today I Learned" page
(although maybe that only works on mobile browsers)

Replies are listed 'Best First'.
Re^5: RFC: "Today I Learned" page
by pryrt (Abbot) on Jan 15, 2024 at 15:36 UTC
    (although maybe that only works on mobile browsers)

    The link:before ... content to expose an attribute is a CSS feature, not a mobile-browser feature.

    The @media shown is what restricts my solution to browsers like used on mobile devices, but using no @media or a different @media definition can make it work on desktops as well.

    While debugging the CSS, I actually didn't use the @media, so I could see it on my desktop browser (since that's where I was editing the CSS anyway) to make sure it was working, then I added in the @media and made sure it stopped showing on desktop but did still show on mobile.