# A group of parameters Fonts
This group of parameters is responsible for connecting fonts with Google Fonts. Fonts and styles for them are connected in the head
section after all the connected styles and have the highest priority, unless otherwise specified by the css attribute !important
or specified directly in the <html> markup in the style
attribute.
Note: by default, no font is connected in the template, UIkit also does not include any fonts by default.
# Parameter Font for <html>
Connect the base font for the entire site.
Specifies the following css rule:
html {
font-family:'fontname;'
}
# Parameter Font for heading
Connect font for headings.
If this parameter is not defined, but the Font for <html> parameter is defined, the value of the latter is used.
Specifies the following css rule:
h1,
h2,
h3,
h4,
h5,
h6,
.uk-h1,
.uk-h2,
.uk-h3,
.uk-h4,
.uk-h5,
.uk-h6 {
font-family:'fontname';
}
# Parameter Font for logo
Connect font for the logo.
If this parameter is not defined, but the Font for <html> parameter is defined, the value of the latter is used.
Specifies the following css rule:
.uk-logo {
font-family:'fontname';
}
# Parameter the Font for menu in navbar
Connect the font for the items of the main menu and content section of the navbar.
If this parameter is not defined, but the Font for <html> parameter is defined, the value of the latter is used.
Specifies the following css rule:
.uk-navbar-nav > li > a,
.uk-navbar-item,
.uk-navbar-toggle {
font-family:'fontname';
}
# Parameter Monospace font
Connect a monospace font.
If this parameter is not defined, but the Font for <html> parameter is defined, the value of the latter is used.
Specifies the following css rule:
pre,
pre code,
:not(pre) > code,
:not(pre) > kbd,
:not(pre) > samp {
font-family:'fontname';
}
# Parameter Font variants
Serves to specify the font styles of the plug-in fonts. All specified font styles will be connected if there are any.
The default font variants 400 and 700. The parameter is required.
# Parameter Font subsets
Serves to specify encodings of the plug-in fonts. All specified font encodings, if any, will be included.
The default encoding is latin. The parameter is required.
# A group of parameters CSS
# Parameter Include UIkit CSS
Specifies the connectivity option of the original UIkit styles.
The options are:
- Not include – do not connect UIkit styles, in this case you should take care of connecting UIkit styles for the template yourself;
- Based – basic version of styles;
- Minified – compressed version of styles;
- RTL – styles for languages with right-hand writing;
- RTL minified – compressed version of styles for languages with right writing.
The default value is Minified.
# Parameter The files in the folder /css
template
Allows you to manage the connection of css-files located in the /css
folder in the root of the template folder.
The file connection from the list occurs after connecting the UIkit styles.
The list of files is generated automatically, sorted by file name. Files whose extension is different from the .css
extension are not included in the list and are not connected.
# Parameter Additional CSS files
Allows you to optionally specify style files for connecting them in the template.
File paths are specified from the root of the site with a leading slash (/
). Each file is written from a new line.
The connection of files from the list occurs after the connection of style files from the parameter The files in the folder /css
template.
Files whose extension is different from the .css
extension are not included. The template provides protection from connections of non-existent files.
# A group of parameters Javascript
# Parameter Include the built-in jQuery
Allows you to connect to the template jQuery library included in Joomla.
jQuery connection is prioritized over all other script connections. The default is not connected.
# Parameter Include UIkit JS
Specifies the connection option of the main UIkit script.
The options are:
- Not include – do not connect the UIkit script, in this case, you must take care about connecting the script to the UIkit template.
- Based – basic version of the script;
- Minified – compressed version of the script;
The default value is Minified.
# Parameter Icons Include UIkit JS
Specifies the connection for the script icons UIkit.
The options are:
- Not include – not connected script icons UIkit, in this case, you must take care of connected script icons UIkit template;
- Based – basic version of script icons;
- Minified – compressed (#) option of script icons;
The default value is version Minified.
# Parameter The files in the folder /js
template
Allows you to manage the connection of js-files located in the /js
folder in the root of the template folder.
The file connection from the list occurs after connection of UIkit scripts.
The list of files is generated automatically, sorted by file name. Files whose extension is different from the .js
extension are not included in the list and are not connected.
# Parameter Additional JS files
Allows you to optionally specify the script files to connect them in the template.
File paths are specified from the root of the site with a leading slash (/
). Each file is written on a new line.
The file connection from the list occurs after connection of script files from parameter The files in the folder /js
template.
Files whose extension is different from the .js
extension are not included. The template provides protection from connections of non-existent files.