Difference between revisions of "Template:Example"

(Prototype team template page)
 
(14 intermediate revisions by 2 users not shown)
Line 209: Line 209:
 
}
 
}
  
.incomplete {
+
.judges-will-not-evaluate {
 
border: 4px solid #72c9b6;
 
border: 4px solid #72c9b6;
 
display: block;
 
display: block;
Line 217: Line 217:
 
}
 
}
  
.complete {
 
display: none;
 
}
 
  
 
/*STYLING */
 
/*STYLING */
Line 468: Line 465:
 
 
  
// this adds the team's name as an h1
+
if ( wgPageName.substring( 0,  8) == "Template")  {  // if the page is a template it displays the full name in a single line
$("#team_name").html( wgPageName.substring( 5 , wgPageName.indexOf("/")  ) );  
+
$("#team_name").html( wgPageName );
 +
}
 +
 
 +
else if (  ( (wgPageName.match(/\//g) || []).length ) == 0 ) {  // if it is the home page , just print the team's name
 +
$("#team_name").html( wgPageName.substring( 5, wgPageName.length ) );
 +
}
 +
 
 +
else {
 +
// this adds the team's name as an h1
 +
$("#team_name").html( wgPageName.substring( 5 , wgPageName.indexOf("/")  ) );  
 +
 
 +
// this adds the page's title as an h4
 +
$("#page_name").html (    ( wgPageName.substring( wgPageName.indexOf("/") + 1, wgPageName.length ) ).replace( /\/|_/g , " ")  );
 +
}
 +
 
 +
 
 +
if( ($(location).attr('href')).indexOf("submit") >= 0  ) {
 +
$(".menu_wrapper").css( { "position": "absolute", "height": "auto"});
 +
$("#wpTextbox1").css( 'margin-top', '440px');
 +
}
 +
 
  
// this adds the page's title as an h4
 
$("#page_name").html (    ( wgPageName.substring( wgPageName.indexOf("/") + 1, wgPageName.length ) ).replace( /\//g , " ")  );
 
  
  

Latest revision as of 16:05, 22 March 2017