-
DescriptionI am happily using Quarto for the site/lectures of a course, in HTML. The material is often updated, so I'd like to include a "Last modified: ..." in the sidebar (the bar typically on the left), just below the title. I could do this by hand, by adding that line to the title, for instance like this:
but this would require to manually change the date every time some page is modified. I was wondering if there's any way to make this more automatic. I tried:
Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 9 replies
-
Use the |
Beta Was this translation helpful? Give feedback.
-
For future visitors to this q: from inspecting the templates I note that recent quarto already supports a |
Beta Was this translation helpful? Give feedback.
Use the
meta
shortcode:title: "Course Title<br> Last modified: {{< meta date >}}"
.