Skip to content

Instantly share code, notes, and snippets.

@hiteshbal91
Last active August 29, 2015 14:23
Show Gist options
  • Save hiteshbal91/40b52f21e3008ae4945b to your computer and use it in GitHub Desktop.
Save hiteshbal91/40b52f21e3008ae4945b to your computer and use it in GitHub Desktop.
Built.io Contentstack "Tutorials"
<!DOCTYPE HTML>
<html>
<head>
<title>{{entry.seo.title}}</title>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
{% if entry.seo %}
{% if entry.seo.title %}
<meta name="title" content="{{entry.seo.title}}">
{% endif %}
{% if entry.seo.keywords %}
<meta name="keywords" content="{{entry.seo.keywords}}">
{% endif %}
{% if entry.seo.description %}
<meta name="description" content="{{entry.seo.description}}">
{% endif %}
{% endif %}
<link rel="shortcut icon" href="/static/favicon.ico" />
<link href='//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,400,300,600,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="/static/stylesheets/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="/static/stylesheets/css/owl.carousel.css">
<link rel="stylesheet" type="text/css" href="/static/stylesheets/css/owl.theme.css">
<link rel="stylesheet" type="text/css" href="/static/stylesheets/css/slick.css">
<link rel="stylesheet" type="text/css" href="/static/stylesheets/css/slick-theme.css">
<link rel="stylesheet" type="text/css" href="/static/stylesheets/css/main.css">
<script src="//use.typekit.net/twv1nxm.js"></script>
<script>try{Typekit.load();}catch(e){}</script>
</head>
<body>
{% include "partials/header.html" %}
{% block content %}{% endblock %}
{% include "partials/footer.html" %}
<script type="text/javascript" src="/static/js/vendor/jquery.min.js"></script>
<script type="text/javascript" src="/static/js/vendor/bootstrap.min.js"></script>
<script type="text/javascript" src="/static/js/vendor/slick.min.js"></script>
<script type="text/javascript" src="/static/js/vendor/owl.carousel.min.js"></script>
<script type="text/javascript" src="/static/js/script.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment