From 32c63b7fbde15fbc953bc2df5b9d4fadc65b4e24 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Wed, 12 Aug 2020 22:11:52 +0530 Subject: [PATCH] layouts: remove now needless standalone type Signed-off-by: Harsh Shandilya --- content/about.md | 2 -- content/aps-privacy.md | 2 -- content/projects.md | 2 -- content/uses.md | 2 -- content/viscerion-privacy.md | 2 -- layouts/standalone/single.html | 48 ---------------------------------- 6 files changed, 58 deletions(-) delete mode 100644 layouts/standalone/single.html diff --git a/content/about.md b/content/about.md index cb1d378..af580fa 100644 --- a/content/about.md +++ b/content/about.md @@ -1,8 +1,6 @@ +++ title = "About Me" id = "about" -type = "standalone" -layout = "standalone" aliases = [ "/about", "/contact", diff --git a/content/aps-privacy.md b/content/aps-privacy.md index 909616f..4ceb5c3 100644 --- a/content/aps-privacy.md +++ b/content/aps-privacy.md @@ -1,8 +1,6 @@ +++ title = "Android Password Store Privacy Policy" id = "aps-privacy" -type = "standalone" -layout = "standalone" +++ ## Privacy Policy diff --git a/content/projects.md b/content/projects.md index e0640cc..4caef78 100644 --- a/content/projects.md +++ b/content/projects.md @@ -1,8 +1,6 @@ +++ title = "Projects" id = "projects" -type = "standalone" -layout = "standalone" +++ Over the years I have worked on and contributed to various projects in the Android community. My personal projects can be found on [GitHub](https://github.com/msfjarvis), diff --git a/content/uses.md b/content/uses.md index 398992c..48230c0 100644 --- a/content/uses.md +++ b/content/uses.md @@ -1,7 +1,5 @@ +++ title = "Uses" -type = "standalone" -layout = "standalone" +++ ## Editor + Terminal diff --git a/content/viscerion-privacy.md b/content/viscerion-privacy.md index 2eaf3dd..858c6c7 100644 --- a/content/viscerion-privacy.md +++ b/content/viscerion-privacy.md @@ -1,8 +1,6 @@ +++ title = "Viscerion Privacy Policy" id = "viscerion-privacy" -type = "standalone" -layout = "standalone" +++ ## Privacy Policy diff --git a/layouts/standalone/single.html b/layouts/standalone/single.html deleted file mode 100644 index 00103c0..0000000 --- a/layouts/standalone/single.html +++ /dev/null @@ -1,48 +0,0 @@ -{{ define "styles" }} - {{ $.Scratch.Set "style_opts" (dict "src" "scss/pages/post.scss" "dest" "css/post.css") }} -{{ end }} - -{{ define "main" }} - {{ $dateFormat := .Site.Params.dateFormat | default "Jan 2 2006" }} - -
-
-
-
-

{{.Title}}

-
-
- {{ partial "anchored-headings.html" .Content }} - {{ if or .Params.math .Site.Params.math }} - {{ partial "math.html" . }} - {{ end }} -
-
- {{ partial "social-icons.html" .}} -

{{ replace .Site.Copyright "{year}" now.Year }}

-
-
-
- {{ if .Params.toc }} -
- {{ if .Site.Params.showPageTitleInTOC }}
{{ .Title }}
{{ end }} - {{ .TableOfContents }} -
- {{ end }} -
- -{{ end }} - -{{ define "scripts" }} - {{/* Hardcode a specific prismjs version to avoid a redirect on every page load. */}} - - - {{/* Automatically loads the needed languages to highlight the code blocks. */}} - - - {{ if .Params.toc }} - - {{ end }} - -{{ end }}