Created
March 26, 2013 16:22
-
-
Save jsoa/5246778 to your computer and use it in GitHub Desktop.
web-mode highlighting issue
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
{% block body %} | |
{% block body_full_upper %}{% endblock %} | |
<div class="width-1000 body-title-outer"> | |
<div class="body-title">{% block body_title %}{% endblock %}</div> | |
{% block body_content %}{% endblock %} | |
</div> | |
{% block body_full_lower %}{% endblock %} | |
{% endblock %} | |
{% block footer %} | |
{% include "pageincludes/footer.html" %} | |
{% endblock %} |
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
{% block body %} | |
{% block body_full_upper %} {% endblock %} | |
<div class="width-1000 body-title-outer"> | |
<div class="body-title">{% block body_title %} {% endblock %}</div> | |
{% block body_content %} {% endblock %} | |
</div> | |
{% block body_full_lower %} {% endblock %} | |
{% endblock %} | |
{% block footer %} | |
{% include "pageincludes/footer.html" %} | |
{% endblock %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment