Contents
Syntax
The syntax for
cssinclude{options}(abolute-path)
@cssinclude{options}(absolute-path)
Description
The
<link rel="stylesheet" type="text/css" href="relative-path" options>
The
Note: Another good way to include a css file, where an error is thrown if the file does not exist, is:
<link rel="stylesheet" type="text/css" href="@pathtofile(absolute-path)">
Options
Anything added as an option to a
f++ example
Example of
cssinclude("site/assets/css/main.css")
n++ example
Example of
@cssinclude("site/assets/css/main.css")