From f87cded82c8eb030567a3b29da825ed5ece60733 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Sun, 30 Dec 2018 07:21:47 -0200 Subject: Use creation date of pastebin instead of dynamic exported date. --- pastebin/skeleton.org | 1 + pastebin/website-pastebin | 5 ++++- site/pastebin/nix-exps.org | 3 ++- site/pastebin/nix-show-derivation.org | 3 ++- 4 files changed, 9 insertions(+), 3 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" "

$date

"))) #+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 diff --git a/site/pastebin/nix-exps.org b/site/pastebin/nix-exps.org index ac06826..5aaef0b 100644 --- a/site/pastebin/nix-exps.org +++ b/site/pastebin/nix-exps.org @@ -1,4 +1,5 @@ -#+SETUPFILE: ../../pastebin-template.org +#+SETUPFILE: ../../pastebin/template.org +#+BIND: org-html-postamble-format (("en" "

2018-07-25 Wed 20:50

"))) #+TITLE: Nix Stuff #+BEGIN_SRC nix -n let diff --git a/site/pastebin/nix-show-derivation.org b/site/pastebin/nix-show-derivation.org index 28a916b..9f2c22b 100644 --- a/site/pastebin/nix-show-derivation.org +++ b/site/pastebin/nix-show-derivation.org @@ -1,4 +1,5 @@ -#+SETUPFILE: ../../pastebin-template.org +#+SETUPFILE: ../../pastebin/template.org +#+BIND: org-html-postamble-format (("en" "

2018-07-25 Wed 20:51

"))) #+TITLE: =nix show-derivation= sample output #+BEGIN_SRC nix -n $ nix show-derivation /nix/store/zzz9cl2ly0mb2njr7vwa5528fxmn29m8-combofont-0.2.drv -- cgit v1.2.3