From 5515c79e10de0ff6b58db15dcb4f40128931a348 Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 17 Jun 2025 19:58:39 +0300 Subject: [PATCH] =?UTF-8?q?Task:6785=20|=20=D0=94=D0=BE=D0=B1=D0=B0=D0=B2?= =?UTF-8?q?=D0=B8=D0=BB=20=D1=88=D0=B0=D0=B1=D0=BB=D0=BE=D0=BD=20policy,?= =?UTF-8?q?=20=D1=81=D1=82=D0=B8=D0=BB=D0=B8=20=D0=B8=20=D0=B2=D0=B5=D1=80?= =?UTF-8?q?=D1=81=D1=82=D0=BA=D1=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../static-pages/policy/template_wtb.php | 18 +++++++++ .../cosmopet/static/css/policy-page.css | 38 +++++++++++++++++++ .../cosmopet/templates/_pages/policy.twig | 15 ++++++++ 3 files changed, 71 insertions(+) create mode 100644 wp-content/themes/cosmopet/modules/static-pages/policy/template_wtb.php create mode 100644 wp-content/themes/cosmopet/static/css/policy-page.css create mode 100644 wp-content/themes/cosmopet/templates/_pages/policy.twig diff --git a/wp-content/themes/cosmopet/modules/static-pages/policy/template_wtb.php b/wp-content/themes/cosmopet/modules/static-pages/policy/template_wtb.php new file mode 100644 index 0000000..f62d037 --- /dev/null +++ b/wp-content/themes/cosmopet/modules/static-pages/policy/template_wtb.php @@ -0,0 +1,18 @@ + \ No newline at end of file diff --git a/wp-content/themes/cosmopet/static/css/policy-page.css b/wp-content/themes/cosmopet/static/css/policy-page.css new file mode 100644 index 0000000..89fd811 --- /dev/null +++ b/wp-content/themes/cosmopet/static/css/policy-page.css @@ -0,0 +1,38 @@ +.policy-home { + margin-top: 5%; + margin-bottom: 5%; +} + +h1 { + font-family: "Craftwork Grotesk"; + font-size: 48px; + font-weight: 700; + line-height: 56px; + text-transform: uppercase; + margin-bottom: 60px; +} + +h3 { + font-size: 24px; + font-family: "Craftwork Grotesk"; + margin-top: 20px; + margin-bottom: 20px; +} + +p { + font-size: 18px; + font-family: "Craftwork Grotesk"; + margin-bottom: 10px; +} + +ul { + margin-bottom: 10px; +} + +li { + font-size: 18px; + font-family: "Craftwork Grotesk"; + margin-bottom: 10px; + list-style-type: disc; + margin-left: 25px; +} \ No newline at end of file diff --git a/wp-content/themes/cosmopet/templates/_pages/policy.twig b/wp-content/themes/cosmopet/templates/_pages/policy.twig new file mode 100644 index 0000000..55cc95a --- /dev/null +++ b/wp-content/themes/cosmopet/templates/_pages/policy.twig @@ -0,0 +1,15 @@ +{% set bodyClass = 'main-np' %} + +{% extends 'layout.twig' %} + +{% block content %} +
+
+
+
+ {{ post.content }} +
+
+
+
+{% endblock %} \ No newline at end of file