Get tomorrow's date?

This should be pretty simple but I seem to be looking up the wrong thing.
I can get tomorrow’s day of the week using
{{ now().strftime("%A") }}

that’s easy enough…but what if I want tomorrow’s date? what’s the templating equivalent of
now() + timedelta(days=1) ?

{{(as_timestamp(now())+ (86400)) | timestamp_custom("%A",true)}}

86,400 seconds in a day.

5 Likes

Worked perfectly, thank you!