+
+ {{- $isHidden := .Params.cover.hidden | default site.Params.cover.hiddenInSingle | default site.Params.cover.hidden }}
+ {{- partial "cover.html" (dict "cxt" . "IsHome" false "isHidden" $isHidden) }}
+ {{- if (.Param "ShowToc") }}
+ {{- partial "toc.html" . }}
+ {{- end }}
+
+ {{- if .Content }}
+
+ {{- if not (.Param "disableAnchoredHeadings") }}
+ {{- partial "anchored_headings.html" .Content -}}
+ {{- else }}{{ .Content }}{{ end }}
+
+
+
+ Rating System
+
+ - β
ββββ
- Awful.
+
- β
β
βββ
- Waste of time..
+
- β
β
β
ββ
- Fine, could've managed without it lol
+
- β
β
β
β
β
- Definitely worth a read.
+
- β
β
β
β
β
- Must read!
+
+
+
+
+
+ Books & Manga
+ {{ range .Site.Data.biblioteca }}
+
+ {{.title}} |
+ {{.my_rating}} stars |
+ {{.date.day}}.{{.date.month}}.{{.date.year}} |
+ {{.description}} |
+
+ {{end}}
+
+
+ {{- end }}
+
+
+
+ {{- if (.Param "comments") }}
+ {{- partial "comments.html" . }}
+ {{- end }}
+
+
+{{- end }}{{/* end main */}}
diff --git a/layouts/_default/single_tv.html b/layouts/_default/single_tv.html
new file mode 100644
index 0000000..7aca63b
--- /dev/null
+++ b/layouts/_default/single_tv.html
@@ -0,0 +1,98 @@
+{{- define "main" }}
+
+
+
+ {{- $isHidden := .Params.cover.hidden | default site.Params.cover.hiddenInSingle | default site.Params.cover.hidden }}
+ {{- partial "cover.html" (dict "cxt" . "IsHome" false "isHidden" $isHidden) }}
+ {{- if (.Param "ShowToc") }}
+ {{- partial "toc.html" . }}
+ {{- end }}
+
+ {{- if .Content }}
+
+ {{- if not (.Param "disableAnchoredHeadings") }}
+ {{- partial "anchored_headings.html" .Content -}}
+ {{- else }}{{ .Content }}{{ end }}
+
+
+ Rating System
+
+ - β
ββββ
- Awful.
+
- β
β
βββ
- Waste of time..
+
- β
β
β
ββ
- Fine, could've managed without it lol
+
- β
β
β
β
β
- Definitely worth a watch.
+
- β
β
β
β
β
- Must watch!
+
+
+
+
+
+ Movies
+ {{ range .Site.Data.movies }}
+ {{ if .date.year }}
+
+ {{.title}} |
+ {{.my_rating}} stars |
+ {{.date.day}}.{{.date.month}}.{{.date.year}} |
+
+ {{end}}
+ {{end}}
+
+
+
+
+
+ Series
+ {{ range .Site.Data.series }}
+ {{ if .date.year }}
+
+ {{.title}} |
+ {{.my_rating}} stars |
+ {{.date.day}}.{{.date.month}}.{{.date.year}} |
+
+ {{end}}
+ {{end}}
+
+
+ {{- end }}
+
+
+
+ {{- if (.Param "comments") }}
+ {{- partial "comments.html" . }}
+ {{- end }}
+
+
+{{- end }}{{/* end main */}}