* Fix link to email address
See https://github.com/hossainemruz/toha/issues/7
* ✨ provide ability to show certification badges in about section
Signed-off-by: jbleduigou <jb.leduigou@gmail.com>
* Merge certifications and sofkSkills under "badges" generic title
Signed-off-by: hossainemruz <hossainemruz@gmail.com>
Co-authored-by: Emruz Hossain <hossainemruz@gmail.com>
* Fix link to email address
See https://github.com/hossainemruz/toha/issues/7
* ✨ adding mailchimp newsletter feature
Signed-off-by: jbleduigou <jb.leduigou@gmail.com>
* Make possible to support different newsletter service in future
Signed-off-by: hossainemruz <hossainemruz@gmail.com>
Co-authored-by: Emruz Hossain <hossainemruz@gmail.com>
* Allow to disable the footer with params.footer.enable = false
Default is to have the footer enabled (to keep backwards
compatibility).
The diff looks much worse than it is, I just added a variable and an
if clause, but then had to indent the rest of the file.
Make footerEnabled an explicit variable.
This should improve readability.
Use default parameter for even more readability.
* Allow to enable/disable the "contact me" section in the footer.
Just set `footer.contactMe.enable` in the config. Default is true, for
backwards compatibility.
* Make footer template more consistent.
Enabling footers elements and the newsletter is now managed in the
same place.
* Allow to disable the footer navigation. Default is enabled.
* Allow to disable credentials and copyright notice. Default: enabled
* Footer: Reformat variable initialization for readability.
* Allow providing template for footer
Signed-off-by: hossainemruz <hossainemruz@gmail.com>
Co-authored-by: hossainemruz <hossainemruz@gmail.com>
Whenever href (url) attribute was omitted or had no value
the click action would do nothing. With no URLs defined and
`target="_blank"` attributes, which were recently added,
anchor tags now redirect users to new blank tabs (side effect).
This PR solves the issues by adding conditions
before applying `target="_blank"` or in some cases by
ommiting entire entities (e.g. the view_certificate button).
* Add alt tag to the images
Signed-off-by: hossainemruz <hossainemruz@gmail.com>
* Remove unnecessary /
Signed-off-by: hossainemruz <hossainemruz@gmail.com>
* translate_Chinese
* translate_Chinese
* Add one-click return to the top function on the article page
Signed-off-by: Ray <Chow-Ray@outlook.com>
* Fix scroll-to-top button
Signed-off-by: hossainemruz <hossainemruz@gmail.com>
Co-authored-by: Emruz Hossain <hossainemruz@gmail.com>
* Add support for client-side search with Fuse.js. Implements #42.
Based on https://gist.github.com/eddiewebb/735feb48f50f0ddd65ae5606a1cb41ae
* Move search form code repeated in many places to one single template.
* Add search box in home page.
* Fix search UI + Some improvements
Signed-off-by: hossainemruz <hossainemruz@gmail.com>
* Remove search.md from exampleSite
Signed-off-by: hossainemruz <hossainemruz@gmail.com>
Co-authored-by: Emruz Hossain <hossainemruz@gmail.com>
* Add more i18n strings
* Add the translation strings in other files
Signed-off-by: hossainemruz <hossainemruz@gmail.com>
Co-authored-by: hossainemruz <hossainemruz@gmail.com>
* Fix to the hero so you can have the image named anything you want
* Keep backward compatibility
Signed-off-by: hossainemruz <hossainemruz@gmail.com>
Co-authored-by: hossainemruz <hossainemruz@gmail.com>
I love the list template. However, I had some issues using it for other content archetypes other than `posts`. This code change makes list.html fully generic, there are no more built in references to `posts`.
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
* Update layout to use Hugo Image Processing.
Created shortcode rimg that uses the srcset attribute to display responsive images.
* Copy Static images to assets folder.
* Add image processing to missing components + Update examples
* Fix rendering in https://themes.gohugo.io/
Co-authored-by: Emruz Hossain <emruz@appscode.com>
* Fix the single template to use the authors avatar correctly
* Replace absURL with relURL and .Site.X with site.X
Co-authored-by: Emruz Hossain <emruz@appscode.com>