{% extends "base.html" %} {% set _cms_title = get_page_content(page_id, 'title', g.lang_code) %} {% set _cms_desc = get_page_content(page_id, 'description', g.lang_code) %} {% set _cms_heading = get_page_content(page_id, 'page_heading', g.lang_code) %} {% set _cms_page_desc = get_page_content(page_id, 'page_description', g.lang_code) %} {% set _cms_page_body = get_page_content(page_id, 'page_body', g.lang_code) %} {% set _cms_head_html = get_page_content(page_id, 'head_html', g.lang_code) %} {% set _cms_og_image = get_page_content(page_id, 'og_image', g.lang_code) %} {% set _cms_before_faq_title = get_page_content(page_id, 'before_faq_title', g.lang_code) %} {% set _cms_before_faq_content = get_page_content(page_id, 'before_faq_content', g.lang_code) %} {% block title %}{% if _cms_title %}{{ _cms_title }}{% else %}{% trans %}Disclaimer | OnlineConvert.cc{% endtrans %}{% endif %}{% endblock %} {% block description %}{% if _cms_desc %}{{ _cms_desc }}{% else %}{% trans %}Disclaimer | OnlineConvert.cc{% endtrans %}{% endif %}{% endblock %} {% block og_image_tag %}{% if _cms_og_image %}{% endif %}{% endblock %} {% block extra_head %}{% if _cms_head_html %}{{ _cms_head_html|safe }}{% endif %}{% endblock %} {% block content %} {% set _ht_disclaimer = site.get('hero_bg_type', 'gradient') if site is defined else 'gradient' %} {% set _hero_img = site.get('hero_bg_image', '') if site is defined else '' %} {% set _hero_lcl = (site.get('hero_img_left_color_light', '#1e3a5f') if site is defined) or '#1e3a5f' %} {% set _hero_lcd = (site.get('hero_img_left_color_dark', '#0f172a') if site is defined) or '#0f172a' %}
{% if _ht_disclaimer == 'image' %} {% endif %} {% if _ht_disclaimer == 'gradient' %}
{% elif _ht_disclaimer == 'image' and _hero_img %}
{% endif %}

{{ _cms_heading if _cms_heading else _('Disclaimer') }}

{% if _cms_page_desc %}

{{ _cms_page_desc }}

{% endif %}
{% if _cms_page_body %} {{ _cms_page_body|safe }} {% else %}

{% trans %}Disclaimer{% endtrans %}

{% trans %}If you require any more information or have any questions about our site's disclaimer, please feel free to contact us by email at {% endtrans %}admin@onlineconvert.cc. {% trans %}Our Disclaimer was generated with the help of the Disclaimer Generator.{% endtrans %}

{% trans %}Disclaimers for All In One Video Converter{% endtrans %}

{% trans %}All the information on this website{% endtrans %} - OnlineConvert.cc - {% trans %}is published in good faith and for general information purpose only. All In One Video Converter does not make any warranties about the completeness, reliability and accuracy of this information. Any action you take upon the information you find on this website (All In One Video Converter), is strictly at your own risk. All In One Video Converter will not be liable for any losses and/or damages in connection with the use of our website.{% endtrans %}

{% trans %}From our website, you can visit other websites by following hyperlinks to such external sites. While we strive to provide only quality links to useful and ethical websites, we have no control over the content and nature of these sites. These links to other websites do not imply a recommendation for all the content found on these sites. Site owners and content may change without notice and may occur before we have the opportunity to remove a link which may have gone 'bad'.{% endtrans %}

{% trans %}Please be also aware that when you leave our website, other sites may have different privacy policies and terms which are beyond our control. Please be sure to check the Privacy Policies of these sites as well as their "Terms of Service" before engaging in any business or uploading any information. Our Privacy Policy was created by the Privacy Policy Generator.{% endtrans %}

{% trans %}Consent{% endtrans %}

{% trans %}By using our website, you hereby consent to our disclaimer and agree to its terms.{% endtrans %}

{% trans %}Update{% endtrans %}

{% trans %}Should we update, amend or make any changes to this document, those changes will be prominently posted here.{% endtrans %}

{% endif %}
{% if _cms_before_faq_title or _cms_before_faq_content %}
{% if _cms_before_faq_title %}

{{ _cms_before_faq_title }}

{% endif %} {% if _cms_before_faq_content %}
{{ _cms_before_faq_content|safe }}
{% endif %}
{% endif %} {% if page_faqs %}

{% trans %}Frequently Asked Questions{% endtrans %}

{% for faq in page_faqs %}
{{ faq.question }}
{{ faq.answer|safe }}
{% endfor %}
{% endif %}
{% endblock %}