generated from westfarn/web_django_template
Replaces template branding with College Craft pages, assets, and copy, and matches Gitea deploy workflows to the server-infra catalog name and master branch so beta deploys actually run. Closes #1
39 lines
3.2 KiB
HTML
39 lines
3.2 KiB
HTML
{% extends "base.html" %}
|
|
{% load static %}
|
|
{% block title %}Terms of Service · {{ SITE_NAME }}{% endblock %}
|
|
{% block og_title %}Terms of Service · {{ SITE_NAME }}{% endblock %}
|
|
{% block twitter_title %}Terms of Service · {{ SITE_NAME }}{% endblock %}
|
|
{% block meta_description %}Terms of Service for {{ SITE_NAME }} — how we use analytics, protect your information, and never sell or share personal data with third parties for marketing.{% endblock %}
|
|
{% block og_description %}Terms of Service for {{ SITE_NAME }} — how we use analytics and protect your information.{% endblock %}
|
|
{% block twitter_description %}Terms of Service for {{ SITE_NAME }} — how we use analytics and protect your information.{% endblock %}
|
|
{% block content %}
|
|
{% include "public/_breadcrumbs.html" with title="Terms of Service" subtitle="Legal" %}
|
|
<section class="section section-lg bg-default">
|
|
<div class="container legal-prose">
|
|
<p class="legal-lead">These Terms of Service describe how {{ SITE_NAME }} (“we,” “us”) operates this website and related pages. By using this site you agree to these terms.</p>
|
|
|
|
<h2>Analytics and site performance</h2>
|
|
<p>We use analytics to monitor site performance, understand how visitors use the site, and improve content and reliability. Analytics may collect technical information such as pages viewed, approximate location derived from IP address, device/browser type, and referral source. This information is used only to operate and improve the site.</p>
|
|
|
|
<h2>We do not sell or share your data</h2>
|
|
<p>We never sell your personal information. We do not share or sell user data to third parties for their advertising or marketing. Contact-form submissions, employment applications, and related lead information are used only to respond to your inquiry and to run our painting business.</p>
|
|
|
|
<h2>Information you provide</h2>
|
|
<p>When you submit the contact form, careers form, or other requests, you may share your name, email, phone, mailing address, and message. We use that information to follow up with you and, with your consent, for related outreach (email, SMS, or postcard where applicable). You can change preferences or unsubscribe using the links in our messages, or by contacting us.</p>
|
|
|
|
<h2>Cookies and similar technologies</h2>
|
|
<p>We may use cookies or similar technologies needed for the site to work (for example session and security) and for analytics as described above. The analytics notice on the site acknowledges this use. For questions about cookies or analytics, contact us using the details below.</p>
|
|
|
|
<h2>Contact</h2>
|
|
<p>
|
|
{% if CONTACT_EMAIL %}<a class="link-default" href="mailto:{{ CONTACT_EMAIL }}">{{ CONTACT_EMAIL }}</a>{% endif %}
|
|
{% if CONTACT_PHONE %}{% if CONTACT_EMAIL %} · {% endif %}<a class="link-default" href="tel:{{ CONTACT_PHONE_TEL }}">{{ CONTACT_PHONE }}</a>{% endif %}
|
|
{% if CONTACT_ADDRESS %}<br>{{ CONTACT_ADDRESS }}{% endif %}
|
|
</p>
|
|
<p><a class="button button-primary button-md" href="{% url 'public:contact' %}">Contact College Craft</a></p>
|
|
|
|
<p class="legal-updated">Last updated: {% now "F j, Y" %}</p>
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|