content/system/meta
Use the meta item to include information in the <head> section of the website. Including the default/extension <title>, default <meta name="description" content="…"> and <meta name="keywords" content="…">
[pagetitle]…[pagetitleend]
[pagedescription]…[pagedescriptionend]
[keywords]…[keywordsend]
[meta,…]
See Also
[pagetitle][pagedescription][keywords][meta]Examples
Example#1 set the default page title & description for the website.
[pagetitle]WebGeniSys[pagetitleend]
[pagedescription]WebGenisys web development platform[pagedescriptionend]
Example#2 "contact" page with no [pagetitle] & [pagedescription]
[section]…
Output:
<head>
<title>WebGeniSys</title>
<meta name="description" content="WebGenisys web integration platform">
Example#3 "contact" page with [pagetitle] & [pagedescription].
[pagetitle]Contact Page[pagetitleend]
[pagedescription]Contact Details for WebGenisys[pagedescriptionend]
[section]…
Output:
<head>
<title>Contact Page - WebGeniSys</title>
<meta name="description" content="Contact Details for WebGenisys">
Example#3 include a google font in website.
[meta,link href="https://fonts.googleapis.com/css2?family=Alfa+Slab+One&display=swap" rel="stylesheet"]
Output:
<head>
<meta link href="https://fonts.googleapis.com/css2?family=Alfa+Slab+One&display=swap" rel="stylesheet">
Notes