Created
August 30, 2013 16:26
-
-
Save pnegri/6391667 to your computer and use it in GitHub Desktop.
This file contains 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
<!-- { editable_area: Conteúdo, content, 0, 0 } --> | |
<!-- { unique_editable_area: Logomarca, brand, 360, 140 } --> | |
<!-- { unique_editable_area: Rodapé, footer, 0, 0 } --> | |
<!doctype html> | |
<html lang="en"> | |
<head> | |
<title>{{ site_title }}</title> | |
{{ "//netdna.bootstrapcdn.com/bootstrap/3.0.0-rc2/css/bootstrap.min.css" | stylesheet }} | |
</head> | |
<body> | |
<header> | |
{{ brand }} | |
</header> | |
<ul> | |
{% for nav in top_menu %} | |
<li><a href="{{ nav.url }}">{{ nav.title }}</a></li> | |
{% endfor %} | |
</ul> | |
<section class="content">{{ content }}</section> | |
<footer> | |
{{ footer }} | |
</footer> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment