Skip to content

Instantly share code, notes, and snippets.

@padde
Created February 14, 2013 06:35
Show Gist options
  • Select an option

  • Save padde/4951001 to your computer and use it in GitHub Desktop.

Select an option

Save padde/4951001 to your computer and use it in GitHub Desktop.
Basic Locomotive Template
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Test</title>
{% seo %}
{% inline_editor %}
</head>
<body>
<nav id="main_menu">
<ul>
<li class="{% if page.fullpath == 'index' %}on{% endif %}">
<a href="/">Home Page</a>
</li>
{% nav site, no_wrapper: true %}
</ul>
</nav>
<div class="clear"></div>
<h2>{{ page.title }}</h2>
{% block content %}
{% editable_long_text 'page_content' %}
some content
{% endeditable_long_text %}
{% endblock %}
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment