How to display the month and the year in the CV? #3562
-
|
Hi! Although RenderCV says that the format YYYY-MM is okay, only the year is displayed in the CV on my website. More concretely, I have something like in my cv.yml file but on my website, only 2022 - 2023 is displayed. Can this be changed? Best |
Beta Was this translation helpful? Give feedback.
Answered by
george-gca
Mar 4, 2026
Replies: 1 comment 3 replies
-
|
It is because this is being overriden in the layout. Check the education, for example: al-folio/_includes/cv/education.liquid Lines 21 to 24 in 196bb25 So you need to change it there also. The layouts for the cv are in |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, this is a liquid language thing. Basically, where you are using
{% %}, use{%- -%}instead. When you add the-, it removes spaces that it would add before and after the liquid template. For more information, check liquid whitespace control.