Skip to content

Commit

Permalink
Shorter date on doc footer
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexDaniel committed Jun 10, 2016
1 parent 6f028bd commit ee767e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Pod/Htmlify.pm6
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ sub url-munge($_) is export {
#| Return the footer HTML for each page
sub footer-html($pod-path) is export {
my $footer = slurp 'template/footer.html';
$footer.subst-mutate(/DATETIME/, ~DateTime.now);
$footer.subst-mutate(/DATETIME/, ~DateTime.now.utc.truncated-to('seconds'));
my $pod-url;
my $gh-link = q[<a href='https://github.com/perl6/doc'>perl6/doc on GitHub</a>];
if $pod-path eq "unknown" {
Expand Down

0 comments on commit ee767e6

Please sign in to comment.