From 7c2eb69dbd77be34ecdf1a4e8378b19dc4c7b511 Mon Sep 17 00:00:00 2001 From: hossainemruz Date: Mon, 22 Jun 2020 00:20:14 +0600 Subject: [PATCH 1/4] Add project roadmap --- README.md | 93 +++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 91 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 85d2f22..325e6d2 100644 --- a/README.md +++ b/README.md @@ -100,16 +100,105 @@ Here, are some handy shortcodes you can use with this theme. - [split](https://toha.netlify.app/posts/short-codes/split/) - [vs](https://toha.netlify.app/posts/short-codes/vs/) +## Project Roadmap + +Here, are the current plan and progress of various components of this theme. The components will be prioritized based on users requests. + +### Sections + +- [x] **Home** + - [x] Configurable Background + - [x] Author Image + - [x] Greeting + - [x] Typing Carousel + +- [x] **About** + - [x] Name and Designation + - [x] Summary + - [x] Markdown Support + - [x] Social Links + - [x] Font Awesome Support + - [x] Resume Link + - [x] Soft Skills Indicator + +- [x] **Skills** + - [x] Skill Cards + - [x] Markdown Support + +- [x] **Experiences** + - [x] Designation + - [x] Timeline + - [x] Company Overview + - [x] Responsibilities + +- [ ] **Projects** + - [x] Category Filter + - [ ] Project Card + - [x] Overview + - [x] Markdown Support + - [x] Github Stars + - [x] External URL Support + - [ ] Technology Tags + +- [x] **Recent Posts** + +- [ ] **Publications** + - [ ] Category Filter + - [ ] Card + - [ ] Abstract + - [ ] Authors + - [ ] Tags + - [ ] Links + - [ ] Gallery + +- [ ] **Accomplishment / Courses** + - [ ] Overview + - [ ] Certificate + +- [x] **Achievements Gallery** + - [x] Image + - [x] Summary + +### List Page + +- [x] Post Cards +- [x] Sidebar +- [ ] Pagination + +### Reading Page + +- [x] Hero Image +- [x] Author Information +- [x] Next & Previous Page Navigation +- [x] `Improve This Page` Button +- [x] Disqus Comment +- [ ] Option to navigate to list page + +### Tracking and Comments + +- [x] Google Analytics +- [x] Disqus Comment + +### Shortcodes + +- [x] Image +- [x] Split Page into Multiple Column +- [x] Vertical space between two sections +- [ ] Figure & sub-figure +- [ ] Tabs + ## Contributing -Contributions are welcomed and I will be happy to review. Just follow the following principles: +You can contribute to this theme in various way. You can report a bug, file an feature request, send a PR, share your thoughts etc. + +Pull requests are most welcomed and I will be happy to review. Just follow the following principles: - Keep it simple. - Keep it consistent with the design. - Use as little dependency as possible. - Have patient. -I am not a web developer. I just created this theme for my personal needs. So, it is reasonable to have some flaws in the codes. Feel free to open issues and PR acknowledging the problems. +>I am not a web developer. I just created this theme for my personal needs. So, it is reasonable to have some flaws in the codes. Feel free to open issues and PR acknowledging the problems. ## Attribution From 39dafc56e0a66c625adf8e60e47722ce5cbb83e3 Mon Sep 17 00:00:00 2001 From: Pau Trepat Segura Date: Sun, 21 Jun 2020 20:08:11 +0200 Subject: [PATCH 2/4] Simplify code removing duplicated templates --- layouts/partials/experiences.html | 23 ++++++++----------- ...right-h-line.html => horizontal-line.html} | 0 .../experiences/right-to-left-h-line.html | 11 --------- .../partials/experiences/right-v-line.html | 3 --- .../{left-v-line.html => vertical-line.html} | 0 5 files changed, 10 insertions(+), 27 deletions(-) rename layouts/partials/experiences/{left-to-right-h-line.html => horizontal-line.html} (100%) delete mode 100644 layouts/partials/experiences/right-to-left-h-line.html delete mode 100644 layouts/partials/experiences/right-v-line.html rename layouts/partials/experiences/{left-v-line.html => vertical-line.html} (100%) diff --git a/layouts/partials/experiences.html b/layouts/partials/experiences.html index 3eedca8..91ad594 100644 --- a/layouts/partials/experiences.html +++ b/layouts/partials/experiences.html @@ -3,24 +3,21 @@

Experiences

- {{ $total:= len .Site.Data.experiences.experiences }} - {{ range $idx,$val:= .Site.Data.experiences.experiences }} - {{ if eq (mod $idx 2) 0 }} + {{ $totalExperiences:= len .Site.Data.experiences.experiences }} + {{ range $index,$experience:= .Site.Data.experiences.experiences }} + {{ if eq (mod $index 2) 0 }}
- {{ partial "experiences/left-v-line.html" $idx }} - {{ partial "experiences/experience-info.html" $val }} + {{ partial "experiences/vertical-line.html" $index }} + {{ partial "experiences/experience-info.html" $experience }}
- {{ if lt $idx (sub $total 1) }} - {{ partial "experiences/left-to-right-h-line.html" $idx }} - {{ end }} {{else}}
- {{ partial "experiences/experience-info.html" $val }} - {{ partial "experiences/right-v-line.html" $idx }} + {{ partial "experiences/experience-info.html" $experience }} + {{ partial "experiences/vertical-line.html" $index }}
- {{ if lt $idx (sub $total 1) }} - {{ partial "experiences/right-to-left-h-line.html" $idx }} - {{ end }} + {{ end }} + {{ if lt $index (sub $totalExperiences 1) }} + {{ partial "experiences/horizontal-line.html" $index }} {{ end }} {{ end }}
diff --git a/layouts/partials/experiences/left-to-right-h-line.html b/layouts/partials/experiences/horizontal-line.html similarity index 100% rename from layouts/partials/experiences/left-to-right-h-line.html rename to layouts/partials/experiences/horizontal-line.html diff --git a/layouts/partials/experiences/right-to-left-h-line.html b/layouts/partials/experiences/right-to-left-h-line.html deleted file mode 100644 index 95f13ae..0000000 --- a/layouts/partials/experiences/right-to-left-h-line.html +++ /dev/null @@ -1,11 +0,0 @@ -
-
-
-
-
-
-
-
-
-
-
diff --git a/layouts/partials/experiences/right-v-line.html b/layouts/partials/experiences/right-v-line.html deleted file mode 100644 index 7d8b74b..0000000 --- a/layouts/partials/experiences/right-v-line.html +++ /dev/null @@ -1,3 +0,0 @@ -
-
{{ add . 1 }}
-
diff --git a/layouts/partials/experiences/left-v-line.html b/layouts/partials/experiences/vertical-line.html similarity index 100% rename from layouts/partials/experiences/left-v-line.html rename to layouts/partials/experiences/vertical-line.html From 6af92aa5aecbb4d56096f0188b6273b5c9408c78 Mon Sep 17 00:00:00 2001 From: hossainemruz Date: Mon, 22 Jun 2020 03:08:25 +0600 Subject: [PATCH 3/4] make bold text color consistence with the theme color scheme --- static/assets/css/style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/static/assets/css/style.css b/static/assets/css/style.css index f477740..68befc6 100644 --- a/static/assets/css/style.css +++ b/static/assets/css/style.css @@ -26,6 +26,10 @@ h5 { color: #1c2d41; } +strong{ + color: #1c2d41!important; +} + p { color: #3c4858; } From 632aa48c7116729188b9114561a51b375d093fca Mon Sep 17 00:00:00 2001 From: hossainemruz Date: Mon, 22 Jun 2020 04:37:09 +0600 Subject: [PATCH 4/4] Support markdown syntax in the summary field of achievementes --- layouts/partials/misc/achievement.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/misc/achievement.html b/layouts/partials/misc/achievement.html index 61a6d39..8548a1a 100644 --- a/layouts/partials/misc/achievement.html +++ b/layouts/partials/misc/achievement.html @@ -6,6 +6,6 @@

{{ .title }}