armansansd 2 jaren geleden
bovenliggende
commit
b74b57b296

File diff suppressed because it is too large
+ 0 - 0
web/themes/custom/popsu/assets/css/styles.min.css


File diff suppressed because it is too large
+ 0 - 0
web/themes/custom/popsu/assets/js/main.js


+ 12 - 1
web/themes/custom/popsu/lib/script.js

@@ -208,7 +208,8 @@ $(function(){
 	// HOME PAGE 
 	if($(".path-frontpage").length > 0){
 		
-		let elem = "<div class='main_logo'></div>";
+		let elem = $(".field_logo").clone();
+
 		$(".about .views-row").prepend(elem);
 
 		var header_container = "<div class='header_container'></div>";
@@ -451,6 +452,16 @@ if($(".block-region-first").find("a").length == 0 ){
 	}
 };
 
+//spec ressources video 
+if($(".page-node-type-ressource").find(".ressources-video").length > 0){
+	
+	let vid = $(".field_videos").parents().eq(0);
+	let prog = $(".field_programme").parents().eq(0);
+	$(vid).clone().insertAfter(prog);
+	$(vid).remove();
+
+}
+
 //crop text for collection 
 // $(".block-region-third .views-field-description__value").addClass("hidden_text");
 // $(".block-region-third .views-field-description__value").on("click", function(){

+ 6 - 1
web/themes/custom/popsu/popsu.theme

@@ -41,7 +41,12 @@ function popsu_preprocess_html(&$variables) {
 }
 
 function popsu_preprocess_page(&$variables) {
-  dump($variables);
+  if(isset($variables['node'])){
+  $node = $variables['node'];
+  if(isset($node) && $node->hasField('field_videos') && $node->get('field_videos')->getString() != ""){
+    $variables['attributes']['class'][] = 'ressources-video';
+  }
+  }
 }
 
 function popsu_preprocess_node(&$variables){

+ 7 - 7
web/themes/custom/popsu/sass/pages/_programme.scss

@@ -289,7 +289,7 @@
             }
         }
         .main_logo{
-            background: center / contain no-repeat url(../../images/POPSU_1.svg);
+            //background: center / contain no-repeat url(../../images/POPSU_1.svg);
         }
     }
     
@@ -303,7 +303,7 @@
             }
         }
         .main_logo{
-            background: center / contain no-repeat url(../../images/POPSU_1.svg);
+            //background: center / contain no-repeat url(../../images/POPSU_1.svg);
         }
     }
     &.programme-3{
@@ -317,7 +317,7 @@
         }
         
         .main_logo{
-            background: center / contain no-repeat url(../../images/POPSU_Europe.svg);
+            //background: center / contain no-repeat url(../../images/POPSU_Europe.svg);
         }
     }
     // àmodifer ?? 
@@ -332,7 +332,7 @@
         }
         
         .main_logo{
-            background: center / contain no-repeat url(../../images/POPSU_2.svg);
+            //background: center / contain no-repeat url(../../images/POPSU_2.svg);
         }
     }
     &.programme-5{
@@ -346,7 +346,7 @@
         }
         
         .main_logo{
-            background: center / contain no-repeat url(../../images/POPSU_monde.svg);
+            //background: center / contain no-repeat url(../../images/POPSU_monde.svg);
         }
     }
     &.programme-6{
@@ -360,7 +360,7 @@
         }
         
         .main_logo{
-            background: center / contain no-repeat url(../../images/POPSU_territoires.svg);
+            //background: center / contain no-repeat url(../../images/POPSU_territoires.svg);
         }
     }
     &.programme-7{
@@ -374,7 +374,7 @@
         }
         
         .main_logo{
-            background: center / contain no-repeat url(../../images/POPSU_metropoles.svg);
+            //background: center / contain no-repeat url(../../images/POPSU_metropoles.svg);
         }
     }
     .layout-content{

+ 16 - 0
web/themes/custom/popsu/sass/pages/_ressources.scss

@@ -819,3 +819,19 @@
 	}
 
 }
+
+//spec ressources vidéo 
+.page-node-type-ressource{
+	.ressources-video{
+		#node\:field_image{
+			display: none;
+		}
+		#node\:field_type_de_ressource{
+			padding: 0;
+
+		}
+		#node\:field_videos{
+			margin: 0rem 0 1rem 0;
+		}
+	}
+}

+ 1 - 1
web/themes/custom/popsu/sass/pages/partials/_header_footer.scss

@@ -156,7 +156,7 @@
 		display: block;
         font-size: 0;
 		color: transparent;
-		background: left / contain no-repeat url(../../images/POPSU_logo.svg);
+		//background: left / contain no-repeat url(../../images/POPSU_logo.svg);
 	}
 	@include breakpoint(small down) {
 		grid-template-columns: 1fr 1fr;

+ 1 - 1
web/themes/custom/popsu/templates/layout/page--node.html.twig

@@ -30,7 +30,7 @@
  * @see html.html.twig
  */
 #}
-<div class="layout-container row">
+<div class="layout-container row {{ attributes.class }}">
 
   {% include directory ~ '\/partials/header.html.twig' %}
   {{ page.help }}

Some files were not shown because too many files changed in this diff