For the complete documentation index, see llms.txt. This page is also available as Markdown.

Common Styles

The CommonStyles template part renders the WEM runtime stylesheets. This template part is typically placed in the <head> section of the website.

Syntax

<% CommonStyles %>

Example

<head>
    <title>Title of the Application</title>
    <!-- Head content -->
    <% CommonStyles %>
    <!-- Head content -->
</head>

Generated Output

<link rel="stylesheet" href="/static/styles/default.css">
<link rel="stylesheet" href="/static/styles/customcontrol.css">

Last updated

Was this helpful?