summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrtk0c <[email protected]>2025-10-13 11:28:00 -0700
committerrtk0c <[email protected]>2025-10-13 11:28:00 -0700
commit732d31318168deea86985c354de364243a072dbb (patch)
tree268ff8384176bd0120982b8a3aa27adbe5c61f69
parent5eecca6277dbf6ae74d8ae596542ba05d31b09fd (diff)
Remove profile mode
-rw-r--r--themes/PaperMod/layouts/_default/list.html6
-rw-r--r--themes/PaperMod/layouts/partials/index_profile.html58
2 files changed, 0 insertions, 64 deletions
diff --git a/themes/PaperMod/layouts/_default/list.html b/themes/PaperMod/layouts/_default/list.html
index e0d0d40..6656425 100644
--- a/themes/PaperMod/layouts/_default/list.html
+++ b/themes/PaperMod/layouts/_default/list.html
@@ -1,9 +1,5 @@
{{- define "main" }}
-{{- if (and site.Params.profileMode.enabled .IsHome) }}
-{{- partial "index_profile.html" . }}
-{{- else }} {{/* if not profileMode */}}
-
{{- if not .IsHome | and .Title }}
<header class="page-header">
{{- partial "breadcrumbs.html" . }}
@@ -109,6 +105,4 @@
</footer>
{{- end }}
-{{- end }}{{/* end profileMode */}}
-
{{- end }}{{- /* end main */ -}}
diff --git a/themes/PaperMod/layouts/partials/index_profile.html b/themes/PaperMod/layouts/partials/index_profile.html
deleted file mode 100644
index 6882f39..0000000
--- a/themes/PaperMod/layouts/partials/index_profile.html
+++ /dev/null
@@ -1,58 +0,0 @@
-<div class="profile">
- {{- with site.Params.profileMode }}
- <div class="profile_inner">
- {{- if .imageUrl -}}
- {{- $img := "" }}
- {{- if not (urls.Parse .imageUrl).IsAbs }}
- {{- $img = resources.Get .imageUrl }}
- {{- end }}
- {{- if $img }}
- {{- $processableFormats := (slice "jpg" "jpeg" "png" "tif" "bmp" "gif") -}}
- {{- if hugo.IsExtended -}}
- {{- $processableFormats = $processableFormats | append "webp" -}}
- {{- end -}}
- {{- $prod := (hugo.IsProduction | or (eq site.Params.env "production")) }}
- {{- if and (in $processableFormats $img.MediaType.SubType) (eq $prod true)}}
- {{- if (not (and (not .imageHeight) (not .imageWidth))) }}
- {{- $img = $img.Resize (printf "%dx%d" .imageWidth .imageHeight) }}
- {{- else if .imageHeight }}
- {{- $img = $img.Resize (printf "x%d" .imageHeight) }}
- {{ else if .imageWidth }}
- {{- $img = $img.Resize (printf "%dx" .imageWidth) }}
- {{ else }}
- {{- $img = $img.Resize "150x150" }}
- {{- end }}
- {{- end }}
- <img draggable="false" src="{{ $img.Permalink }}" alt="{{ .imageTitle | default "profile image" }}" title="{{ .imageTitle }}"
- height="{{ .imageHeight | default 150 }}" width="{{ .imageWidth | default 150 }}" />
- {{- else }}
- <img draggable="false" src="{{ .imageUrl | absURL }}" alt="{{ .imageTitle | default "profile image" }}" title="{{ .imageTitle }}"
- height="{{ .imageHeight | default 150 }}" width="{{ .imageWidth | default 150 }}" />
- {{- end }}
- {{- end }}
- <h1>{{ .title | default site.Title | markdownify }}</h1>
- <span>{{ .subtitle | markdownify }}</span>
- {{- partial "social_icons.html" -}}
-
- {{- with .buttons }}
- <div class="buttons">
- {{- range . }}
- <a class="button" href="{{ trim .url " " }}" rel="noopener" title="{{ .name }}">
- <span class="button-inner">
- {{ .name }}
- {{- if (findRE "://" .url) }}&nbsp;
- <svg fill="none" shape-rendering="geometricPrecision" stroke="currentColor" stroke-linecap="round"
- stroke-linejoin="round" stroke-width="2.5" viewBox="0 0 24 24" height="14" width="14">
- <path d="M18 13v6a2 2 0 01-2 2H5a2 2 0 01-2-2V8a2 2 0 012-2h6"></path>
- <path d="M15 3h6v6"></path>
- <path d="M10 14L21 3"></path>
- </svg>
- {{- end }}
- </span>
- </a>
- {{- end }}
- </div>
- {{- end }}
- </div>
- {{- end}}
-</div>