69 lines
2.4 KiB
Plaintext
69 lines
2.4 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Terms of Service — <%= businessName %></title>
|
|
<link rel="stylesheet" href="<%= baseUrl %>/assets/site.css">
|
|
<style>
|
|
:root {
|
|
--primary: <%= colorScheme.primary %>;
|
|
--primary-dark: <%= colorScheme.primaryDark %>;
|
|
--primary-light: <%= colorScheme.primaryLight %>;
|
|
--accent: <%= colorScheme.accent %>;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Navigation -->
|
|
<nav class="nav">
|
|
<div class="nav-inner">
|
|
<a href="<%= baseUrl %>/" class="nav-brand">
|
|
<% if (logoUrl) { %>
|
|
<img src="<%= logoUrl %>" alt="<%= businessName %> logo">
|
|
<% } %>
|
|
<%= businessName %>
|
|
</a>
|
|
<button class="nav-mobile-toggle" onclick="document.querySelector('.nav-links').classList.toggle('open')" aria-label="Toggle menu">
|
|
<svg width="24" height="24" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><path d="M3 12h18M3 6h18M3 18h18"/></svg>
|
|
</button>
|
|
<ul class="nav-links">
|
|
<li><a href="<%= baseUrl %>/">Home</a></li>
|
|
<li><a href="<%= baseUrl %>/contact">Contact</a></li>
|
|
<li><a href="<%= baseUrl %>/privacy-policy">Privacy Policy</a></li>
|
|
<li><a href="<%= baseUrl %>/terms">Terms</a></li>
|
|
</ul>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Terms of Service -->
|
|
<section class="legal-page">
|
|
<div class="container">
|
|
<h1>Terms of Service</h1>
|
|
<div class="legal-meta">Last updated: <%= new Date().toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' }) %> · <%= businessName %></div>
|
|
<div class="legal-content">
|
|
<%- website.termsOfService %>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Footer -->
|
|
<footer class="footer">
|
|
<div class="container">
|
|
<div class="footer-inner">
|
|
<div class="footer-brand"><%= businessName %></div>
|
|
<ul class="footer-links">
|
|
<li><a href="<%= baseUrl %>/">Home</a></li>
|
|
<li><a href="<%= baseUrl %>/contact">Contact</a></li>
|
|
<li><a href="<%= baseUrl %>/privacy-policy">Privacy Policy</a></li>
|
|
<li><a href="<%= baseUrl %>/terms">Terms of Service</a></li>
|
|
</ul>
|
|
<div class="footer-copy">© <%= year %> <%= businessName %>. All rights reserved.</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|