You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the index.markdown we describe a high-level our services using the e.g. block cards.
Each Service has a link to "See More or Learn More".
These are my questions:
How can I create that page?
Could you create a template for me for these type of pages?
e.g. called it page_template.markdown
what layout should I use?
What I mean by that is that a new page will have the header, footer, etc and then an area where I can add text, images, or even reusing the concept of the:
block,
block_text_image,
block_image_text
block_text
block_text_fluid
block_icon_card
block_text_cards
block_image_cards
block_logo_cards
single text outside of the front-matter
Where these pages should be stored, e.g. for services should they be stored in a "Services" folder or at the root as "services.markdown".
Do you understand what I mean?
The text was updated successfully, but these errors were encountered:
For new page of services, it should be sub-menu under the service menu.
create xxx.markdown file at root folder or in the services folder. Both ways will work.
Set up frontmatter to make it sub-menu of service, you have to set order in 2x. (because service menu has order = 20) and set subnav = true
order: 21
subnav: true
** You can follow "blog.markdown" as an example, it is sub-menu of information menu.**
Using layout: page, it provide a block_before and block_afer area where you can apply all block_template to this new page.
block_before: all blocks will be displayed above markdown content area
block_after: all blocks will be displayed bellow markdown content area
You can also just add content as markdown in content area after frontmatter section. This content will display between block_before and block_afer area.
In the index.markdown we describe a high-level our services using the e.g. block cards.
Each Service has a link to "See More or Learn More".
These are my questions:
How can I create that page?
Where these pages should be stored, e.g. for services should they be stored in a "Services" folder or at the root as "services.markdown".
Do you understand what I mean?
The text was updated successfully, but these errors were encountered: