Back
styleSheetLinkTag()
<!--- view code --->
<head>
<!--- Includes `public/stylesheets/styles.css` --->
#styleSheetLinkTag("styles")#
<!--- Includes `public/stylesheets/blog.css` and `public/stylesheets/comments.css` --->
#styleSheetLinkTag("blog,comments")#
<!--- Includes printer style sheet --->
#styleSheetLinkTag(sources="print", media="print")#
<!--- Includes external style sheet --->
#styleSheetLinkTag("http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/cupertino/jquery-ui.css")#
</head>
<body>
<!--- This will still appear in the `head` --->
#styleSheetLinkTag(sources="tabs", head=true)#
</body>
Copied!