aboutsummaryrefslogtreecommitdiff
path: root/con/links.lua
diff options
context:
space:
mode:
authorhitlerrip <git@hitler.rip>2025-07-28 14:49:07 +0200
committerhitlerrip <git@hitler.rip>2025-07-28 14:49:07 +0200
commit74e8e1ad4d02d1c2e39302b5bf2c85ec88c99ad5 (patch)
tree7e1076feab5a6e9b9e995baff6937b8d11882fc0 /con/links.lua
downloadwebsite-74e8e1ad4d02d1c2e39302b5bf2c85ec88c99ad5.tar.gz
website-74e8e1ad4d02d1c2e39302b5bf2c85ec88c99ad5.tar.bz2
website-74e8e1ad4d02d1c2e39302b5bf2c85ec88c99ad5.zip
init
created the initial version of my website build script
Diffstat (limited to 'con/links.lua')
-rw-r--r--con/links.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/con/links.lua b/con/links.lua
new file mode 100644
index 0000000..310c09d
--- /dev/null
+++ b/con/links.lua
@@ -0,0 +1,5 @@
+function Link(el)
+ el.attributes['target'] = "_blank"
+ el.attributes['rel'] = "noopener noreferrer"
+ return el
+end