-
I'd like to add an "experiences" section in the "about" widget, between interests and education, or next to education, for senior members. However, I cannot find the widget of v1 blocks in the current branch, so I cannot suggest an implementation of the experience section for the about widget. Always thanks for your kind contributions |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The path to the block you're looking for is in the link you mentioned (Hugo looks for the path within the You can use Hugo's override principle to create your own version of the file: https://docs.hugoblox.com/reference/extend/#override-a-component Also, if you would like to contribute to the project, you're of course welcome. For contributions, we first need to re-think the strategy for that page (based on the comment in that file) to decide if we try to allows any blox to be used on the page, and if so how. Or to just update that page to use the newer v2 blox or to hardcode something similar to the About blox directly in that page. |
Beta Was this translation helpful? Give feedback.
The path to the block you're looking for is in the link you mentioned (Hugo looks for the path within the
partials
folder): https://github.com/HugoBlox/hugo-blox-builder/blob/56272d835c9772c4071c5cab6832ef4ac4d765f9/modules/blox-bootstrap/layouts/partials/blocks/v1/about.htmlYou can use Hugo's override principle to create your own version of the file: https://docs.hugoblox.com/reference/extend/#override-a-component
Also, if you would like to contribute to the project, you're of course welcome.
For contributions, we first need to re-think the strategy for that page (based on the comment in that file) to decide if we try to allows any blox to be used on the page, and if so how. Or to just …