From e6eb2a847637fe4cc2f9d3e0f5c137f9b56b419d Mon Sep 17 00:00:00 2001 From: ivan zlax Date: Thu, 25 May 2023 08:53:03 +0000 Subject: double columns templates --- view/css/doubleleft.css | 31 +++++++++++++++++++++++++++++++ view/css/doubleright.css | 31 +++++++++++++++++++++++++++++++ view/php/doubleleft.php | 36 ++++++++++++++++++++++++++++++++++++ view/php/doubleright.php | 36 ++++++++++++++++++++++++++++++++++++ 4 files changed, 134 insertions(+) create mode 100644 view/css/doubleleft.css create mode 100644 view/css/doubleright.css create mode 100644 view/php/doubleleft.php create mode 100644 view/php/doubleright.php diff --git a/view/css/doubleleft.css b/view/css/doubleleft.css new file mode 100644 index 000000000..f26b66824 --- /dev/null +++ b/view/css/doubleleft.css @@ -0,0 +1,31 @@ +main { + position: relative; + min-height: 100vh; + display: flex; + flex-direction: column; +} + +.content { + display: flex; + flex: 1; +} + +.columns { + display: flex; + flex:1; + min-width: 0; +} + +#region_1 { + position: relative; + order: 1; + padding: 4.5rem 7px 0px 7px; +} + +#region_2 { + position: relative; + flex: 1; + order: 2; + padding: 4.5rem 7px 200px 7px; + min-width: 0; +} diff --git a/view/css/doubleright.css b/view/css/doubleright.css new file mode 100644 index 000000000..29a09c007 --- /dev/null +++ b/view/css/doubleright.css @@ -0,0 +1,31 @@ +main { + position: relative; + min-height: 100vh; + display: flex; + flex-direction: column; +} + +.content { + display: flex; + flex: 1; +} + +.columns { + display: flex; + flex:1; + min-width: 0; +} + +#region_1 { + position: relative; + flex: 1; + order: 1; + padding: 4.5rem 7px 200px 7px; + min-width: 0; +} + +#region_2 { + position: relative; + order: 2; + padding: 4.5rem 7px 0px 7px; +} diff --git a/view/php/doubleleft.php b/view/php/doubleleft.php new file mode 100644 index 000000000..26dcf6983 --- /dev/null +++ b/view/php/doubleleft.php @@ -0,0 +1,36 @@ + + +> + + <?php if(x($page,'title')) echo $page['title'] ?> + + + + > + +
+ +
+
+
+ +
+ +
+
+
+
+
+ + + diff --git a/view/php/doubleright.php b/view/php/doubleright.php new file mode 100644 index 000000000..2a470109a --- /dev/null +++ b/view/php/doubleright.php @@ -0,0 +1,36 @@ + + +> + + <?php if(x($page,'title')) echo $page['title'] ?> + + + + > + +
+ +
+
+
+
+ +
+
+ +
+
+
+ + + -- cgit v1.2.3