Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

HTML
<!-- Hide Confluence sidebar -->
<script>
<script type="text/javascript">
//<![CDATA[
  AJS.toInit(function () {
    if (AJS.$("div'.ia-fixed-sidebar".collapsed').width() > 55)length == 0) {
      AJS.Confluence.Sidebar.toggle(.$('div.ia-fixed-sidebar').addClass('collapsed').css('width','55px');
      AJS.$('div#main').css({'margin-left':'55px'});
    }
  });
//]]>
</script>


HTML
<!-- Bootstrap CSS -->
<link
  rel="stylesheet"
  href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
  integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z"
  crossorigin="anonymous"
/>

<!-- Remove elements for PDF export -->
<style>
  @media print {
    .noprint {
      display: none;
    }
    .print-timeline {
      height: 25%;
    }
  }
</style>

...