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> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Content Manager</title> | |
</head> | |
<body> |
// 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'; |
There are two types of markup in Liquid: Output and Tag.
{{ matched pairs of curly brackets (ie, braces) }}
<!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 --> |
#Talks
##Jeremy Keith
UIContentSizeCategoryExtraSmall | |
FontStyle: UICTFontTextStyleBody | |
Point size 14.000000 | |
Family Name .AppleSystemUIBody | |
FontStyle: UICTFontTextStyleHeadline | |
Point size 14.000000 | |
Family Name .AppleSystemUIHeadline | |
Bold | |
FontStyle: UICTFontTextStyleSubhead | |
Point size 12.000000 |
... | |
<nav> | |
<ul> | |
<li> | |
<a href="/my/app">Home</a> | |
</li><li> | |
<a href="/my/app/posts">Posts</a> | |
</li><li> | |
<a href="/my/app/posts/1">The First Post</a> | |
</li> |