From 7392edb1d3db813444d4fe166c9399153aa051a9 Mon Sep 17 00:00:00 2001
From: Aditya Telange <21258296+adityatelange@users.noreply.github.com>
Date: Wed, 28 Oct 2020 11:11:13 +0530
Subject: [PATCH 001/617] README: update
- rm old Lighthouse report
- beautify
- update demo image
---
README.md | 36 +++++++++++++++++-------------------
1 file changed, 17 insertions(+), 19 deletions(-)
diff --git a/README.md b/README.md
index 7a6f1cd6..4cc2a267 100755
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@ ExampleSite can be found here: [exampleSite](https://github.com/adityatelange/hu
---
-
+
@@ -33,21 +33,21 @@ Read this post For More Details => [hugo-PaperMod - Installation](https://aditya
## Features/Mods
-- Uses Hugo's asset generator with pipelining, fingerprinting, bundling and minification by default.
-- 3 Modes:
- - Regular Mode.
- - [Home-Info Mode.](https://adityatelange.github.io/hugo-PaperMod/posts/papermod/papermod-features/#home-info-mode)
- - [Profile Mode.](https://adityatelange.github.io/hugo-PaperMod/posts/papermod/papermod-features/#profile-mode)
-- Table of Content Generation (newer implementation).
-- Archive of posts.
-- Social-Media Share buttons on post.
-- Menu location indicator.
-- Multilingual support.
-- Cover image for each post (with Responsive image support).
-- Light/Dark theme ( automatic theme switch a/c to browser theme).
-- SEO Friendly.
-- Muliple Author support.
-- No webpack, nodejs and other depedencies required to edit the theme :)
+- Uses Hugo's asset generator with pipelining, fingerprinting, bundling and minification by default.
+- 3 Modes:
+ - Regular Mode.
+ - [Home-Info Mode.](https://adityatelange.github.io/hugo-PaperMod/posts/papermod/papermod-features/#home-info-mode)
+ - [Profile Mode.](https://adityatelange.github.io/hugo-PaperMod/posts/papermod/papermod-features/#profile-mode)
+- Table of Content Generation (newer implementation).
+- Archive of posts.
+- Social-Media Share buttons on post.
+- Menu location indicator.
+- Multilingual support.
+- Cover image for each post (with Responsive image support).
+- Light/Dark theme ( automatic theme switch a/c to browser theme).
+- SEO Friendly.
+- Muliple Author support.
+- No webpack, nodejs and other depedencies required to edit the theme :)
Read this post For More Details => [hugo-PaperMod - Features](https://adityatelange.github.io/hugo-PaperMod/posts/papermod/papermod-features/)
@@ -61,9 +61,7 @@ Read this post For More Details => [Social-Icons](https://adityatelange.github.i
---
-## LightHouse Report
-
-
+## [LightHouse Report](https://lighthouse-dot-webdotdevsite.appspot.com//lh/html?url=https%3A%2F%2Fadityatelange.github.io%2Fhugo-PaperMod%2F)
---
From 0887805caf54b19e7204718d8262e09ca08467ba Mon Sep 17 00:00:00 2001
From: Aditya Telange <21258296+adityatelange@users.noreply.github.com>
Date: Wed, 28 Oct 2020 22:41:42 +0530
Subject: [PATCH 002/617] README: update
link faq post
---
README.md | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/README.md b/README.md
index 4cc2a267..e2037308 100755
--- a/README.md
+++ b/README.md
@@ -61,6 +61,12 @@ Read this post For More Details => [Social-Icons](https://adityatelange.github.i
---
+## FAQs / How To's
+
+Read this post For More Details => [How To's Guide](https://adityatelange.github.io/hugo-PaperMod/posts/papermod/papermod-how-to/)
+
+---
+
## [LightHouse Report](https://lighthouse-dot-webdotdevsite.appspot.com//lh/html?url=https%3A%2F%2Fadityatelange.github.io%2Fhugo-PaperMod%2F)
---
From 9acbc2c134c2052c54833d9ad63fa048694b9895 Mon Sep 17 00:00:00 2001
From: Aditya Telange <21258296+adityatelange@users.noreply.github.com>
Date: Fri, 30 Oct 2020 01:01:48 +0530
Subject: [PATCH 003/617] baseof: use `dir` attribute instead of class and set
default dir to `auto`
main(css): rm unused class
---
assets/css/main.css | 8 --------
layouts/_default/baseof.html | 4 ++--
2 files changed, 2 insertions(+), 10 deletions(-)
diff --git a/assets/css/main.css b/assets/css/main.css
index 68f8a2f1..6fac98b9 100644
--- a/assets/css/main.css
+++ b/assets/css/main.css
@@ -52,14 +52,6 @@
width: 26px;
}
-.direction-rtl {
- direction: rtl;
-}
-
-.direction-ltr {
- direction: ltr;
-}
-
code {
direction: ltr;
}
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index cd999824..f28e12ba 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -1,5 +1,5 @@
-
+
{{- partial "head.html" . }}
@@ -15,4 +15,4 @@
{{- partialCached "footer.html" . .Type }}
-
\ No newline at end of file
+
From b239f42f6b419c1835ffdaa8286c7fd638a55303 Mon Sep 17 00:00:00 2001
From: Aditya Telange <21258296+adityatelange@users.noreply.github.com>
Date: Fri, 30 Oct 2020 01:15:29 +0530
Subject: [PATCH 004/617] Add accesskeys (attribute specifies a shortcut key to
activate/focus an element.)
c - ToC Open/Close
g- Go To Top
h - Home (according to current lang)
t - Theme toggle
more: https://www.w3schools.com/tags/att_global_accesskey.asp
---
layouts/_default/single.html | 2 +-
layouts/partials/footer.html | 2 +-
layouts/partials/header.html | 4 ++--
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index b13fb74a..72fe4a5f 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -27,7 +27,7 @@