No commit activity in last 3 years
No release in over 3 years
A liquid tag for Bunto to indicate the last time a file was modified.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
~> 2.13.0
>= 0

Runtime

>= 0
~> 0.3.9
 Project Readme

Last Modified At Plugin

A liquid tag for Bunto to indicate the last time a file was modified.

bunto-last-modified-at build status

Setting up

Add the following to your site's _config.yml file

gems:
  - bunto-last-modified-at

Usage

There are a few ways to use this gem.

You can place the following tag somewhere within your layout:

{% last_modified_at %}

By default, this creates a time format matching "%d-%b-%y" (like "04-Jan-14").

You can also choose to pass along your own time format. For example:

{% last_modified_at %Y:%B:%A:%d:%S:%R %}

That produces "2014:January:Saturday:04."

You can also call the method directly on a Bunto "object," like so:

{{ page.last_modified_at }}

To format such a time, you'll need to rely on Liquid's date filter:

{{ page.last_modified_at | date: '%Y:%B:%A:%d:%S:%R' }}

(It's generally more performant to use the page.last_modified_at version of this plugin.)