summaryrefslogtreecommitdiff
path: root/.local
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <david@luevano.xyz>2021-02-27 03:32:13 -0700
committerDavid Luevano Alvarado <david@luevano.xyz>2021-02-27 03:32:13 -0700
commit3aea44014574efbb1fc7a2696ee1ee74c40fa95f (patch)
treea5507a04b8363d5e5a24b46d62a84dc7ea018d7b /.local
parentce697763c56a613ec36521c76a952efb92add2fc (diff)
Add script to get header and footer for ssg
Diffstat (limited to '.local')
-rwxr-xr-x.local/bin/sshf13
1 files changed, 13 insertions, 0 deletions
diff --git a/.local/bin/sshf b/.local/bin/sshf
new file mode 100755
index 0000000..85a0055
--- /dev/null
+++ b/.local/bin/sshf
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+# Get the _header.html and _footer.html required for ssg from an already defined html.
+main() {
+ in_file="${1:-$HOME/dox/www/luevano.xyz/luevano/index.html}"
+ out_folder="${2:-$HOME/dow/www/blog/src/}"
+
+ sed '/<\/header/q' $in_file > $out_folder/_header.html
+ # Not proud of this, lol.
+ tac $in_file | sed '/<footer/q' | tac > $out_folder/_footer.html
+}
+
+main "$@"