x x x
x
Only portrait mode is currently supported - please rotate your device.

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: removed BMC, Value Proposition, and Market Valiation tab

...

Custom section
CustomCSSflex-direction: column; width: 100%; margin: auto; margin-top: 20px;
ContainerIDmaincontainer
DisableAutoHeighttrue


HTML
<div class="page-banner">
<div class="page-banner-overlay"> 
<div class="banner-content">
<div class="title">
<p> Resources</p>
</div>
<div class="tabs">
<p class="tab" id="all-tab"> <a href="/display/ERES/EIT+Resources">All Resources</a></p>
<p class="tab" id="bootcamp-tab"> <a href="/display/ERES/Bootcamp+Resources">Bootcamp</a></p>
<p class="tab" id="business-tab"> <a href="/display/ERES/Business+Model+Canvas%2C+Value+Proposition+and+Market+Validation">Business Model Canvas<a></p>
<p class="tab" id="startup-manual-tab"<a href="/display/ERES/Startup+Manual"> Startup Manual</a></p>
<!--
<p  class="tab" id="advisors-tab">STRATEGIC ADVISORS </p>
-->
</div>

</div>


Show If
groupconfluence-administrators,eit-admins


HTML
<a class="create-resource-button" href="/display/ERES/Create+Resource">Create Resource</a>



HTML
</div>

</div>


Content Layout Macro


...

HTML
<script>
  $('#all-tab').click(function() {
    $('#all-tab').css('border-bottom-style', 'solid');
    $('#bootcamp-tab').css('border-bottom-style', 'unset');
    $('#business#startup-manual-tab').css('border-bottom-style', 'unset');
  });
  
  $('#startup-manual#bootcamp-tab').css('border-bottom-style', 'unset');
  });
  
  $('#bootcamp-tab').click(function() {
    $('#all-tab').css('border-bottom-style', 'unset');
    $('#bootcamp-tab').css('border-bottom-style', 'solid');
    $('#business-tab').css('border-bottom-style', 'unset');
    $('#startup-manual-tab').css('border-bottom-style', 'unset');
  });

  $('#business-tab').click(functionclick(function() {
    $('#all-tab').css('border-bottom-style', 'unset');
    $('#bootcamp-tab').css('border-bottom-style', 'unset');
    $('#business-tab').css('border-bottom-style', 'solid');
    $('#startup-manual-tab').css('border-bottom-style', 'unset');
  });
  
  $('#startup-manual-tab').click(function() {
    $('#all-tab').css('border-bottom-style', 'unset');
    $('#bootcamp-tab').css('border-bottom-style', 'unset');
    $('#business-tab').css('border-bottom-style', 'unset');
    $('#startup-manual-tab').css('border-bottom-style', 'solid');
  });
</script>

...