diff options
Diffstat (limited to '')
-rw-r--r-- | pastebin/skeleton.org | 1 | ||||
-rwxr-xr-x | pastebin/website-pastebin | 5 |
2 files changed, 5 insertions, 1 deletions
diff --git a/pastebin/skeleton.org b/pastebin/skeleton.org index 8349906..8eca122 100644 --- a/pastebin/skeleton.org +++ b/pastebin/skeleton.org @@ -1,4 +1,5 @@ #+SETUPFILE: ../../pastebin/template.org +#+BIND: org-html-postamble-format (("en" "<p class=\"postamble\">$date</p>"))) #+TITLE: $title #+BEGIN_SRC FIXME -n FIXME diff --git a/pastebin/website-pastebin b/pastebin/website-pastebin index 641e75b..185672d 100755 --- a/pastebin/website-pastebin +++ b/pastebin/website-pastebin @@ -72,7 +72,10 @@ sub slugify { our $dirname = dirname(__FILE__); our $in = "$dirname/skeleton.org"; our $out; -my %ENV = (title => $title); +my $date = `date +"%Y-%m-%d %A %H:%M"`; +chomp $date; +my %ENV = (title => $title, date => $date); + # Derived from both: # https://unix.stackexchange.com/a/294836 # https://stackoverflow.com/a/47664214 |