+ {{- .Title }} + {{- if .Draft }} [draft]{{- end }} +
+{{ .Summary | plainify | htmlUnescape }}{{ if .Truncated }}...{{ end }}
+From 29fcd231e3da9b33c237886f3c1bb30a557ad641 Mon Sep 17 00:00:00 2001 From: Indrajith K L Date: Sat, 19 Mar 2022 16:54:23 +0530 Subject: Initial Commit --- themes/PaperMod/layouts/404.html | 3 + .../layouts/_default/_markup/render-image.html | 1 + themes/PaperMod/layouts/_default/archives.html | 49 ++ themes/PaperMod/layouts/_default/baseof.html | 23 + themes/PaperMod/layouts/_default/index.json | 7 + themes/PaperMod/layouts/_default/list.html | 89 ++++ themes/PaperMod/layouts/_default/rss.xml | 50 ++ themes/PaperMod/layouts/_default/search.html | 29 ++ themes/PaperMod/layouts/_default/single.html | 59 +++ themes/PaperMod/layouts/_default/terms.html | 27 ++ .../layouts/partials/anchored_headings.html | 2 + themes/PaperMod/layouts/partials/author.html | 9 + themes/PaperMod/layouts/partials/breadcrumbs.html | 19 + themes/PaperMod/layouts/partials/comments.html | 3 + themes/PaperMod/layouts/partials/cover.html | 40 ++ themes/PaperMod/layouts/partials/edit_post.html | 8 + .../PaperMod/layouts/partials/extend_footer.html | 3 + themes/PaperMod/layouts/partials/extend_head.html | 4 + themes/PaperMod/layouts/partials/footer.html | 135 ++++++ themes/PaperMod/layouts/partials/head.html | 163 +++++++ themes/PaperMod/layouts/partials/header.html | 121 +++++ themes/PaperMod/layouts/partials/home_info.html | 13 + .../PaperMod/layouts/partials/index_profile.html | 23 + .../PaperMod/layouts/partials/post_canonical.html | 9 + themes/PaperMod/layouts/partials/post_meta.html | 21 + .../PaperMod/layouts/partials/post_nav_links.html | 19 + themes/PaperMod/layouts/partials/share_icons.html | 71 +++ themes/PaperMod/layouts/partials/social_icons.html | 7 + themes/PaperMod/layouts/partials/svg.html | 518 +++++++++++++++++++++ .../layouts/partials/templates/opengraph.html | 52 +++ .../layouts/partials/templates/schema_json.html | 119 +++++ .../layouts/partials/templates/twitter_cards.html | 33 ++ themes/PaperMod/layouts/partials/toc.html | 97 ++++ .../layouts/partials/translation_list.html | 19 + themes/PaperMod/layouts/robots.txt | 7 + themes/PaperMod/layouts/shortcodes/blockquote.html | 72 +++ themes/PaperMod/layouts/shortcodes/collapse.html | 8 + themes/PaperMod/layouts/shortcodes/figure.html | 31 ++ themes/PaperMod/layouts/shortcodes/ltr.html | 15 + themes/PaperMod/layouts/shortcodes/rawhtml.html | 2 + themes/PaperMod/layouts/shortcodes/rtl.html | 15 + 41 files changed, 1995 insertions(+) create mode 100644 themes/PaperMod/layouts/404.html create mode 100644 themes/PaperMod/layouts/_default/_markup/render-image.html create mode 100644 themes/PaperMod/layouts/_default/archives.html create mode 100644 themes/PaperMod/layouts/_default/baseof.html create mode 100644 themes/PaperMod/layouts/_default/index.json create mode 100644 themes/PaperMod/layouts/_default/list.html create mode 100644 themes/PaperMod/layouts/_default/rss.xml create mode 100644 themes/PaperMod/layouts/_default/search.html create mode 100644 themes/PaperMod/layouts/_default/single.html create mode 100644 themes/PaperMod/layouts/_default/terms.html create mode 100644 themes/PaperMod/layouts/partials/anchored_headings.html create mode 100644 themes/PaperMod/layouts/partials/author.html create mode 100644 themes/PaperMod/layouts/partials/breadcrumbs.html create mode 100644 themes/PaperMod/layouts/partials/comments.html create mode 100644 themes/PaperMod/layouts/partials/cover.html create mode 100644 themes/PaperMod/layouts/partials/edit_post.html create mode 100644 themes/PaperMod/layouts/partials/extend_footer.html create mode 100644 themes/PaperMod/layouts/partials/extend_head.html create mode 100644 themes/PaperMod/layouts/partials/footer.html create mode 100644 themes/PaperMod/layouts/partials/head.html create mode 100644 themes/PaperMod/layouts/partials/header.html create mode 100644 themes/PaperMod/layouts/partials/home_info.html create mode 100644 themes/PaperMod/layouts/partials/index_profile.html create mode 100644 themes/PaperMod/layouts/partials/post_canonical.html create mode 100644 themes/PaperMod/layouts/partials/post_meta.html create mode 100644 themes/PaperMod/layouts/partials/post_nav_links.html create mode 100644 themes/PaperMod/layouts/partials/share_icons.html create mode 100644 themes/PaperMod/layouts/partials/social_icons.html create mode 100644 themes/PaperMod/layouts/partials/svg.html create mode 100644 themes/PaperMod/layouts/partials/templates/opengraph.html create mode 100644 themes/PaperMod/layouts/partials/templates/schema_json.html create mode 100644 themes/PaperMod/layouts/partials/templates/twitter_cards.html create mode 100644 themes/PaperMod/layouts/partials/toc.html create mode 100644 themes/PaperMod/layouts/partials/translation_list.html create mode 100644 themes/PaperMod/layouts/robots.txt create mode 100644 themes/PaperMod/layouts/shortcodes/blockquote.html create mode 100644 themes/PaperMod/layouts/shortcodes/collapse.html create mode 100644 themes/PaperMod/layouts/shortcodes/figure.html create mode 100644 themes/PaperMod/layouts/shortcodes/ltr.html create mode 100644 themes/PaperMod/layouts/shortcodes/rawhtml.html create mode 100644 themes/PaperMod/layouts/shortcodes/rtl.html (limited to 'themes/PaperMod/layouts') diff --git a/themes/PaperMod/layouts/404.html b/themes/PaperMod/layouts/404.html new file mode 100644 index 0000000..a405573 --- /dev/null +++ b/themes/PaperMod/layouts/404.html @@ -0,0 +1,3 @@ +{{- define "main" }} +
{{ .Summary | plainify | htmlUnescape }}{{ if .Truncated }}...{{ end }}
+{{ .Content | markdownify }}
++diff --git a/themes/PaperMod/layouts/shortcodes/collapse.html b/themes/PaperMod/layouts/shortcodes/collapse.html new file mode 100644 index 0000000..17d8d3b --- /dev/null +++ b/themes/PaperMod/layouts/shortcodes/collapse.html @@ -0,0 +1,8 @@ +{{ if .Get "summary" }} +{{ else }} +{{ warnf "missing value for param 'summary': %s" .Position }} +{{ end }} +{{ .Inner | markdownify }}
+ +
{{ .Get "summary" | markdownify }}
+ {{ .Inner | markdownify }}
+