Skip to content

Instantly share code, notes, and snippets.

@gabrielnau
Created May 13, 2012 16:35
Show Gist options
  • Save gabrielnau/2689208 to your computer and use it in GitHub Desktop.
Save gabrielnau/2689208 to your computer and use it in GitHub Desktop.
Locomotive CMS book / Templating / Liquid Syntax / Objects / Site
<html>
<head>
<title>{{ site.seo_title }}</title>
<meta name='description' content='{{ site.meta_description }}' />
<meta name='keyword' content='{{ site.meta_keywords }}' />
</head>
<body>
</body>
</html>
<html>
<head>
<title>{{ page.seo_title }}</title>
<meta name='description' content='{{ page.meta_description }}' />
<meta name='keyword' content='{{ page.meta_keywords }}' />
</head>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment