Is there a standard format for site structure? Using this would be for exporting and importing into a CMS or framework for defining URLs, content, metadata for a website. The goal would be something agnostic.
JSON, YAML, XML, whatever. Maybe something like:
{ 'baseurl': 'http://example.com', 'site': [ {'slug': '/', 'title': 'ExampleCo. Inc.', 'content': 'Lorem ipsum\n\nEtc'}, {'slug': '/about', 'title': 'About Our Company', 'content': 'Lorem ipsum\n\nEtc'}, {'slug': '/services', 'title': 'Our Services', 'content': 'Lorem ipsum\n\nEtc'}, {'slug': '/products', 'title': 'Products', 'content': 'Lorem ipsum\n\nEtc'}, {'slug': '/products/purchase', 'title': 'Purchase Products Now', 'content': 'Lorem ipsum\n\nEtc', 'content': 'Lorem ipsum\n\nEtc'}, {'slug': '/products/downloads', 'title': 'Downloads', 'content': 'Lorem ipsum\n\nEtc'}, {'slug': '/contact', 'title': 'Contact Us', 'content': 'Lorem ipsum\n\nEtc'} ] }
I believe that this will allow you to quickly fill out a content management system or infrastructure using the general navigation structure of the site.
Is there something similar?