diff --git a/layouts/shortcodes/pageparam.html b/layouts/shortcodes/pageparam.html
deleted file mode 100644
index 661452e..0000000
--- a/layouts/shortcodes/pageparam.html
+++ /dev/null
@@ -1 +0,0 @@
-{{ .Page.Param (.Get 0) -}}
diff --git a/layouts/shortcodes/resource.html b/layouts/shortcodes/resource.html
deleted file mode 100644
index d7b1a0a..0000000
--- a/layouts/shortcodes/resource.html
+++ /dev/null
@@ -1,31 +0,0 @@
-{{ $original := .Page.Resources.GetMatch (.Get "src") }}
-{{ $options := default "1000x" (.Get "options") }}
-
-{{ .Scratch.Set "image" $original }}
-
-{{ $command := (default "Resize" (.Get "command")) }}
-
-{{ if eq $command "Fit"}}
- {{ .Scratch.Set "image" ($original.Fit $options) }}
-{{ else if eq $command "Resize"}}
- {{ .Scratch.Set "image" ($original.Resize $options) }}
-{{ else if eq $command "Fill"}}
- {{ .Scratch.Set "image" ($original.Fill $options) }}
-{{ end }}
-
-
-{{ define "img" }}
- {{ $image := .Scratch.Get "image" }}
-