Hi,
you could insert one static html webpart into your master page, which is inherited by all subpages. This way you will have to change the content of the webpart only on the master page.
Alternatively, you could really create a
custom webpart and insert your code into your_webpart.ascx page. Instead of macro you can set the document title in the code behind using:
String documentName = CMSContext.CurrentDocument.DocumentName;or
String breadcrumbsName = CMSContext.CurrentDocument.DocumentMenuCaption;Best regards,
Ivana Tomanickova