This (should) be easy, I think, but I\'m unable to get today\'s date to show in a Jekyll page using Liquid markup. According to the documentation, I should be able to do this to
To get the whole year, for example "2015", from the site.time, you can either use:
site.time
{{ site.time | date: '%Y' }} # OR 20{{ site.time | date: '%y' }}
To just get the last 2 digits from the year 2015, this will just output "15":
{{ site.time | date: '%y' }}