diff --git a/themes/sandpoints/layouts/_default/_markup/render-image.html b/themes/sandpoints/layouts/_default/_markup/render-image.html
index 0eca2c5..aee9dbc 100644
--- a/themes/sandpoints/layouts/_default/_markup/render-image.html
+++ b/themes/sandpoints/layouts/_default/_markup/render-image.html
@@ -38,6 +38,13 @@
{{ .Text }}
{{- end -}}
+{{- else if strings.HasPrefix .Destination "soundcite:" -}}
+ {{- $a_destination := (substr .Destination 10) -}}
+ {{- if findRE "^.*static" $a_destination -}}
+ {{ .Text }}
+ {{- else -}}
+ {{ .Text }}
+ {{- end -}}
{{- else if findRE "^.*static" .Destination -}}
{{- else -}}
diff --git a/themes/sandpoints/layouts/partials/head.html b/themes/sandpoints/layouts/partials/head.html
index 66c7150..a11094a 100644
--- a/themes/sandpoints/layouts/partials/head.html
+++ b/themes/sandpoints/layouts/partials/head.html
@@ -28,5 +28,6 @@
{{ $sjsopts := dict "targetPath" "js/sandpoints.js" "minify" "true"}}
{{ $sjs := resources.Get "js/sandpoints.js" | js.Build $sjsopts }}
- {{ block "title" . }}{{- .Title }} - {{ .Site.Title -}}{{ end }}
+
+ {{ block "title" . }}{{- .Title }} -- {{ .Site.Title -}}{{ end }}