There are two types of markup in Liquid: Output and Tag.
- Output markup (which may resolve to text) is surrounded by
{{ matched pairs of curly brackets (ie, braces) }}- Tag markup (which cannot resolve to text) is surrounded by
| <!doctype html> | |
| <!--[if IE 7 ]> <html lang="en" class="no-js ie7"> <![endif]--> | |
| <!--[if IE 8 ]> <html lang="en" class="no-js ie8"> <![endif]--> | |
| <!--[if IE 9 ]> <html lang="en" class="no-js ie9"> <![endif]--> | |
| <!--[if (gt IE 9)|!(IE)]><!--> | |
| <html lang="en" class="no-js"> <!--<![endif]--> | |
| <head> | |
| <!-- Meta tags --> |
There are two types of markup in Liquid: Output and Tag.
{{ matched pairs of curly brackets (ie, braces) }}| // Licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication | |
| // http://creativecommons.org/publicdomain/zero/1.0/ | |
| // HTML files: try the network first, then the cache. | |
| // Other files: try the cache first, then the network. | |
| // Both: cache a fresh version if possible. | |
| // (beware: the cache will grow and grow; there's no cleanup) | |
| const cacheName = 'files'; |
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Content Manager</title> | |
| </head> | |
| <body> |