feat: add mockup for static pages

This commit is contained in:
2025-10-29 11:13:31 +13:00
parent 849ebbe7f8
commit b7e1dac66a
11 changed files with 1139 additions and 14 deletions

View File

@ -0,0 +1,96 @@
{% extends "framework_modern.html" %}
{% load static %}
{% block main_content %}
<div class="max-w-4xl mx-auto px-4 py-8">
<!-- Breadcrumbs -->
<div class="text-sm breadcrumbs mb-4">
<ul>
<li><a href="/">Home</a></li>
<li>Terms of Use</li>
</ul>
</div>
<!-- Main Content -->
<div class="bg-base-100 shadow-xl rounded-lg p-8">
<h1 class="text-4xl font-bold mb-6">Terms of Use</h1>
<div class="prose max-w-none">
<p class="text-lg mb-6">
Welcome to enviPath. By accessing and using this platform, you agree to be bound by these terms of use.
</p>
<h2 class="text-2xl font-semibold mt-8 mb-4">1. Acceptance of Terms</h2>
<p class="mb-4">
By accessing and using enviPath, you accept and agree to be bound by the terms and provision of this agreement.
If you do not agree to these terms, please do not use our services.
</p>
<h2 class="text-2xl font-semibold mt-8 mb-4">2. Use License</h2>
<p class="mb-4">
Permission is granted to temporarily access the materials (information or software) on enviPath for personal,
non-commercial research and educational use only. This is the grant of a license, not a transfer of title.
</p>
<p class="mb-4">Under this license you may not:</p>
<ul class="list-disc list-inside mb-4 space-y-2">
<li>Modify or copy the materials</li>
<li>Use the materials for any commercial purpose</li>
<li>Attempt to decompile or reverse engineer any software contained on enviPath</li>
<li>Remove any copyright or other proprietary notations from the materials</li>
</ul>
<h2 class="text-2xl font-semibold mt-8 mb-4">3. Data and Content</h2>
<p class="mb-4">
Users may submit, upload, or otherwise make available data and content to enviPath. By doing so, you grant
enviPath a license to use, modify, publicly perform, publicly display, reproduce, and distribute such content.
</p>
<h2 class="text-2xl font-semibold mt-8 mb-4">4. Disclaimer</h2>
<p class="mb-4">
The materials on enviPath are provided on an 'as is' basis. enviPath makes no warranties, expressed or implied,
and hereby disclaims and negates all other warranties including, without limitation, implied warranties or
conditions of merchantability, fitness for a particular purpose, or non-infringement of intellectual property.
</p>
<h2 class="text-2xl font-semibold mt-8 mb-4">5. Limitations</h2>
<p class="mb-4">
In no event shall enviPath or its suppliers be liable for any damages (including, without limitation, damages
for loss of data or profit, or due to business interruption) arising out of the use or inability to use the
materials on enviPath.
</p>
<h2 class="text-2xl font-semibold mt-8 mb-4">6. Academic Use and Citations</h2>
<p class="mb-4">
If you use enviPath in your research, we request that you cite our work appropriately. Please visit our
<a href="/cite" class="link link-primary">citation page</a> for details.
</p>
<h2 class="text-2xl font-semibold mt-8 mb-4">7. License Information</h2>
<p class="mb-4">
For detailed license information about enviPath data and software, please refer to the
<a href="https://community.envipath.org/t/envipath-license/109" target="_blank" class="link link-primary">
enviPath License documentation
</a>.
</p>
<h2 class="text-2xl font-semibold mt-8 mb-4">8. Modifications</h2>
<p class="mb-4">
enviPath may revise these terms of use at any time without notice. By using this platform, you are agreeing
to be bound by the then current version of these terms of use.
</p>
<h2 class="text-2xl font-semibold mt-8 mb-4">9. Contact Information</h2>
<p class="mb-4">
If you have any questions about these Terms of Use, please <a href="/contact" class="link link-primary">contact us</a>.
</p>
<div class="alert alert-info mt-8">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" class="stroke-current shrink-0 w-6 h-6">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
<span>Last updated: 2025</span>
</div>
</div>
</div>
</div>
{% endblock main_content %}