Skip to content

Instantly share code, notes, and snippets.

@tananin
Last active November 15, 2018 12:25
Show Gist options
  • Save tananin/f31284d071370b08a36a6ac0a3f3763b to your computer and use it in GitHub Desktop.
Save tananin/f31284d071370b08a36a6ac0a3f3763b to your computer and use it in GitHub Desktop.

Вызов секции:

{% include section/section.html id="first" header="1. Проведите замер" content="<p>Lorem ipsum dolor.</p>" %}

Код секции:

<div class="section {{ include.class }}" id="{{ include.id }}">
    <div class="container">
        <div class="row">
            <div class="col-md-6">
                <h2>{{ include.header }}</h2>
                {{ include.content }}
            </div>
            <div class="col-md-6">
                <img src="{{ include.img }}" alt="">
            </div>
        </div>
    </div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment