Created
February 14, 2013 06:35
-
-
Save padde/4951001 to your computer and use it in GitHub Desktop.
Basic Locomotive Template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!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