initial import

This commit is contained in:
2025-10-30 15:04:17 +02:00
commit 637b8dc625
91 changed files with 13585 additions and 0 deletions

50
privacy-policy.php Normal file
View File

@@ -0,0 +1,50 @@
<?php
/*
Template Name: Policy
*/
get_header(); ?>
<main class="page">
<section class="blog-post">
<div class="blog-post__container">
<div class="blog-post__head section-head">
<h1 class="section-head__title">
<?php the_title(); ?>
</h1>
</div>
</div>
</section>
<section class="blog blog--section">
<div class="blog__container">
<?php the_content(); ?>
</div>
</section>
</main>
<style>
.blog__container h2 {
font-size: 38px;
font-weight: 700;
margin-bottom: 32px;
}
.blog__container p,
.blog__container li,
.blog__container ul {
font-size: 16px;
line-height: 24px;
margin-bottom: 24px;
list-style-position: inside;
}
.blog__container li {
margin-bottom: unset;
}
.blog__container li {
margin-bottom: 16px;
}
</style>
<?php get_footer(); ?>