Hello.
I’m very new to Hugo.
I’m trying to create a series of uniform product pages. I have worked through the Giraffe Academy tutorial and I have also read through the docs regarding page bundles, resources etc.
I have started with my own ‘blank’ theme, and have set it up with Bootstrap (since this is a quick and easy layout framework I’m familiar with.) I also have header and footer partials which are working perfectly.
Here is what I need:
I need to output some content on the left, and a contact form on the right. This is fine, I have no problem achieving this in the layout with some Bootstrap markup and the {{.Content }} variable. On the left I also easily achieve the form markup using a partial template inserted into my Bootstrap html.
The problem:
Below this section, I need to get rid of these two columns and create a single row with more text. I understand exactly how this is done with raw html, but with Hugo I am not sure how to structure the content and which functions to call so that I can output more content in a container that is separate from the above two columns. In other words: I am well able to structure the html in my template so that I know where the content should appear, but how do I structure my actual content pieces and which variables/functions/features do I employ to output them?
I’m thinking that a list template will somehow be the best for this, but still not sure how to structure the different content elements and how to input them into the template.
I’m attaching an image to illustrate my problem. There will have to be several pages with different content that are output in this same way.