Skip to content

Instantly share code, notes, and snippets.

@juque
Last active August 26, 2016 19:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juque/cbb8a33ae444329e8cb0dba2dceec4bf to your computer and use it in GitHub Desktop.
Save juque/cbb8a33ae444329e8cb0dba2dceec4bf to your computer and use it in GitHub Desktop.
Bootic: layout configurado para una landing page
<!DOCTYPE HTML>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>{% current_title %} - {{ shop.name }}</title>
{% if template == 'page-landing' %}
{% comment %}
Hoja de estilo para landing page.
IMPORTANTE: La page "Landing" (Contenido / Paginas y formularios) *debe* existir
para que este CSS sea cargado.
{% endcomment %}
{{ 'landing-page.css' | asset_url | stylesheet_tag }}
{% else %}
{% comment %} Hoja de estilo normal para la tienda {% endcomment %}
{{ 'master.css' | asset_url | stylesheet_tag }}
{% endif %}
</head>
<body>
<div class="container">
{{ content_for_layout }}
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment