Hi,
I’m new to Grav and I would like to make a website working with several subdomains. The content or html sections can be different per subdomain. For example:
site_main = www.example.com
sections:
about (html: site_main , content: site_main)
images slider (html: site_main , content: site_main)
features (html: site_main , content: site_main)
site_2 = site2.example.com
sections:
about (html: site_main , content: site_main)
introduction (html: site_2 , content: site_2)
contact form (html: site_2 , content: site_2)
site_3 = site3.example. com
sections:
about (html: site_main , content: site_main)
introduction (html: site_3 , content: site_3)
contact form (html: site_3 , content: site_3)
What is the best way to do this with Grav ? I think multisite setup cannot share content or theme between site.
Basically what I need is only conditions, for example if site=site_2 displays this content with this html.
Thank you.