Sha256: 99d8899fa4412ccbb5c80db9bcdb2d79eba2e63133b6adc623fde077cadc023a

Contents?: true

Size: 1.28 KB

Versions: 1

Compression:

Stored size: 1.28 KB

Contents

{% assign file = page.fileName %}
{% assign folder = page.folderName %}
{% assign lang = page.lang %}
{% assign disclaimerData = site.data[folder][lang][file] %}
<!DOCTYPE html>
<html lang="en" data-tool="landing">
{% include head/index.html %}
<body>
    {% include header/index.html %}
	{%- include dropdown/langdropdown.html -%}
	<div class="container py-4">
		<h1 class="about-h1 py-4">{{disclaimerData.h1}}</h1>
		<h2 class="about-h2">{{disclaimerData.h2}}</h2>
		<div class="py-3">
			{%- for item in disclaimerData.disclaimer -%}
			{%- if item.li -%}
			<li> {{item.li}} </li>
		{%- endif -%}
			    {%- if item.h1 -%}
					<h1> {{item.h1}} </h1>
				{%- endif -%}
				{%- if item.h2 -%}
					<h2 class="common-h2"> {{item.h2}} </h2>
				{%- endif -%}
				{%- if item.p -%}
					<p>{{item.p | replace:"$companyName", page.companyName | replace:"$domain", page.domain }}</p>
				{%- endif -%}
				{%- if item.h3 -%}
				<h3> {{item.h3}} </h3>
			{%- endif -%}
			{%- if item.h4 -%}
			<h4> {{item.h4}} </h4>
		{%- endif -%}
		{%- if item.h5 -%}
		<h5> {{item.h5}} </h5>
	{%- endif -%}
		{%- if item.h6 -%}
		<h6> {{item.h6}} </h6>
	{%- endif -%}
			{%- endfor -%}
		</div>
  </div>
	{% include footer/index.html %}
	{% include script.html %}
</body>

</html>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
appscms-tools-theme-0.4.7 _layouts/disclaimer.html