Sumesh Kuttan
Sumesh Kuttan

Reputation: 1353

Importing html in Orchard CMS

I am using Orchard CMS 1.8 and have created some polymer components. If I add the polymer components inside the Themes folder and access it using the syntax

RegisterLink(new LinkEntry { Rel = "import", Href = Url.Content("~/Themes/TheThemeMachine/components/font-roboto/roboto.html") });

in the layout page, all works fine.

Now I am trying to move these html components to a different project. I created a module for that and added these polymer html components there and I am trying to reference. It is not working.

RegisterLink(new LinkEntry { Rel = "import", Href = Url.Content("~/Modules/Polymer/components/font-roboto/roboto.html") });

I tried adding a script and style reference in my ResourceManifest (in my new module) and I was able to inject script and style using Script.Require and Style.Require.

I am not sure how to import htmls. Can anyone help me on this.

Upvotes: 3

Views: 295

Answers (1)

Antoine Griffard
Antoine Griffard

Reputation: 1059

Script and Style folder have a web.config file with a section that allows static files.

May be copy this file in your components folder to allow to display .html files.

Upvotes: 1

Related Questions