Forum for discussing general topics related to Couch.
2 posts Page 1 of 1
how do I attach and show a data for a published post?

So a published on this date blog thingy.
Published on <cms:show k_page_date />. This will show '2016-05-22 21:35:39'.
More formats of date are here: http://couchdocs/tags-reference/date.html

A good solution would be using TimeAgo thing http://timeago.yarp.com/
With the use of html <time> it can show nicely how much time ago the post was written. Working Couch code for this jQuery plugin:
Code: Select all
<time class="timeago" datetime="<cms:date date=k_page_date format='Y-m-d H:i' />"><cms:date date=k_page_date format='H:i M j, Y' /></time>
2 posts Page 1 of 1