Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 32 additions & 29 deletions pages/landing/patcher/_how-it-works.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,41 +8,44 @@
</figure>
</div>
{% endif %}
{% if item.tab_block %}
{% if item.feature %}
<div style="margin-top: 100px;" class="">
<h2>{{ item.heading }}</h2>
<p>{{ item.body }}</p>
</div>
{% endif %}
<div class="row-image-content {% if item.feature %}{% endif %}{% if item.image_side == "left" %}col-xs-8 col-xs-offset-2 col-sm-5 col-sm-offset-0 col-md-6 col-diagram hidden-print{% else %}col-xs-10 col-xs-offset-1 col-sm-5 col-sm-push-7 col-sm-offset-0 col-md-6 col-md-push-6 col-diagram{% endif %}">
<div class="tab_block">
{% for tab in site.data.patcher-landing-page-tabs-dependencies-list %}
<div class="tab">
<button class="{% if forloop.first %}active tablinks{% else %}tablinks{% endif %}" onclick="openTab(event, '{{tab.id}}')">{{ tab.title }}</button>
{% if item.tab_block %}
{% if item.feature %}
<div style="margin-top: 100px;" class="">
<h2>{{ item.heading }}</h2>
<p>{{ item.body }}</p>
</div>
{% endif %}
<div class="row-image-content {% if item.feature %}{% endif %}{% if item.image_side == "left" %}col-xs-8 col-xs-offset-2 col-sm-5 col-sm-offset-0 col-md-6 col-diagram hidden-print{% else %}col-xs-10 col-xs-offset-1 col-sm-5 col-sm-push-7 col-sm-offset-0 col-md-6 col-md-push-6 col-diagram{% endif %}">
<div class="tab_block">
{% for tab in site.data.patcher-landing-page-tabs-dependencies-list %}
<div class="tab">
<button class="{% if forloop.first %}active tablinks{% else %}tablinks{% endif %}" onclick="openTab(event, '{{tab.id}}')">{{ tab.title }}</button>
</div>
{% endfor %}
</div>
<div style="{% if item.feature %}height:100%{% endif %}" class="tab_content">
{% for tab in site.data.patcher-landing-page-tabs-dependencies-list %}
<div id="{{tab.id}}" class="{% if forloop.first %}first_tabcontent tabcontent{% else %}tabcontent{% endif %}">
<img class="{% if item.popout %}popout{% endif %}" src="{{tab.content}}"/ onclick="{% if item.popout %}popOutContent(event){% endif %}"/>
</div>
{% endfor %}
</div>
</div>
{% endfor %}
</div>
<div style="{% if item.feature %}height:100%{% endif %}" class="tab_content">
{% for tab in site.data.patcher-landing-page-tabs-dependencies-list %}
<div id="{{tab.id}}" class="{% if forloop.first %}first_tabcontent tabcontent{% else %}tabcontent{% endif %}">
<img class="{% if item.popout %}popout{% endif %}" src="{{tab.content}}"/ onclick="{% if item.popout %}popOutContent(event){% endif %}"/>
{% endif %}
{% if item.image %}
<div class="{% if item.image_side == "left" %}col-xs-8 col-xs-offset-2 col-sm-5 col-sm-offset-0 col-md-6 col-diagram hidden-print{% else %}col-xs-10 col-xs-offset-1 col-sm-5 col-sm-push-7 col-sm-offset-0 col-md-6 col-md-push-6 col-diagram{% endif %}">
<img src="{{ item.image }}" class="row_image_content" width="{{ item.image_width }}" style="margin-left: 3px; max-width: 450px;"/>
</div>
{% endfor %}
</div>
</div>
{% endif %}
<div class="{% if item.image_side == "left" %}col-xs-8 col-xs-offset-2 col-sm-5 col-sm-offset-0 col-md-6 col-diagram hidden-print{% else %}col-xs-10 col-xs-offset-1 col-sm-5 col-sm-push-7 col-sm-offset-0 col-md-6 col-md-push-6 col-diagram{% endif %}">
<img src="{{ item.image }}" class="row_image_content" width="{{ item.image_width }}" style="margin-left: 3px; max-width: 450px;"/>
</div>
{% endif %}
{% if item.feature != true %}
<div class="{% if item.feature %}{% elsif item.image_side == "left" %}col-xs-12 col-sm-7 col-md-6 col-description{% else %}col-xs-12 col-sm-7 col-sm-pull-5 col-md-6 col-md-pull-6 col-description{% endif %}">
<h2 style="{% if item.feature %}margin-top:100px;{% endif %}">{{ item.heading }}</h2>
<p>{{ item.body }} this</p>
</div>
<div class="{% if item.feature %}{% elsif item.image_side == "left" %}col-xs-12 col-sm-7 col-md-6 col-description{% else %}col-xs-12 col-sm-7 col-sm-pull-5 col-md-6 col-md-pull-6 col-description{% endif %}">
<h2 style="{% if item.feature %}margin-top:100px;{% endif %}">{{ item.heading }}</h2>
<p>{{ item.body }} this</p>
</div>
{% endif %}
</div>
{% endfor %}

<style>
.tab_content, .tab_code_content {
border: 1px solid #194c5f;
Expand Down