24 lines
958 B
PHP
24 lines
958 B
PHP
<?php include 'header.php'; ?>
|
|
|
|
<section class="py-5 bg-light">
|
|
<div class="container py-lg-4">
|
|
<div class="row justify-content-center">
|
|
<div class="col-lg-8">
|
|
<nav aria-label="breadcrumb">
|
|
<ol class="breadcrumb mb-4">
|
|
<li class="breadcrumb-item"><a href="/" class="text-decoration-none text-success"><?php echo __('home'); ?></a></li>
|
|
<li class="breadcrumb-item active" aria-current="page"><?php echo __('terms_of_service'); ?></li>
|
|
</ol>
|
|
</nav>
|
|
<h1 class="fw-bold mb-4"><?php echo __('terms_of_service_title'); ?></h1>
|
|
|
|
<div class="bg-white p-4 p-md-5 rounded-4 shadow-sm content-text">
|
|
<?php echo __('terms_of_service_content'); ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<?php include 'footer.php'; ?>
|