-
Hi! I would like to include the meta date shortcode in all webpage footers: date: now
date-format: iso
website:
page-footer: "Build: {{< env VERSION >}} @ {{< meta date >}} " But the existence of Is it possible to insert A subset of my .qmd pages (blog posts) still need title blocks enabled. (Here |
Beta Was this translation helpful? Give feedback.
Answered by
mcanouil
Dec 7, 2023
Replies: 1 comment 1 reply
-
Something like this for you to adapt to your exact use case. ---
title: "Quarto Playground"
format: html
date: now
date-format: iso
include-in-header:
text: |
<style type="text/css">
#title-block-header.quarto-title-block.default .quarto-title-meta {
display: none;
}
</style>
---
This is a playground for Quarto.
{{< meta date >}} |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Alternatively, you could work using JavaScript.
Internally, I believe Quarto uses Day.js but it is not forwarded with the rendered documents.
You can even use
_variables.yml
(requires to be alongside a_quarto.yml
) with:buil…