* Migrate to esbuild WIP * Add exclude * Remove redundant file * Move file * Move to javascript_include_tag * Lint fix * WIP * WIP * Add watch mode to esbuild WIP * Get jest working * Remove babel * Revert "Remove babel" This reverts commit 6da35260aa19d6f97f586deb66c0ecaf48433b73. * More WIP * Got image to load * WIP * Resolve audit * Lint fix * WIP * Fix jest spec * [CI] Remove asset-restore for test build stage * Production compliant * Temp disable sourcemap * Update glob * Add esbuild helper to stimulus * Import fragment * Temp disable coverage to see failing tests * Fix broken spec * Address lint * Set proper es6 target * Use esbuild for everything * wait what * Revert "Set proper es6 target" This reverts commit 98f5278093421baa8ffe2ca580845b01c1a1eadf. * Revert "Use esbuild for everything" This reverts commit 0ac46738f07ffcb6af095ccb1ffa5e439b7fefa3. * Replace uglifier with terser * New compiled assets version * Remvoe honeybadger-io/webpack * Remove cypress coverage checks for now * Update jsconfig.json * Update docker-compose * Remove public/packs-test from ci cache
16 lines
1.1 KiB
Text
16 lines
1.1 KiB
Text
<div id="sidebar-wrapper-left" class="sidebar-wrapper sidebar-wrapper-left crayons-layout__sidebar-left crayons-layout__content">
|
|
<aside class="side-bar" aria-label="Primary sidebar">
|
|
<% cache(release_adjusted_cache_key("main-sidebar-nav--#{user_signed_in?}"), expires_in: 15.minutes) do %>
|
|
<%= render partial: "shared/auth_widget", locals: { tracking_id: "ca_left_sidebar_home_page", source: "left_sidebar" } unless user_signed_in? %>
|
|
<%= render partial: "layouts/main_nav", locals: { context: "sidebar" } %>
|
|
<%= render "layouts/sidebar_tags" %>
|
|
<% end %>
|
|
<div class="js-billboard-container" data-async-url="<%= billboard_path(placement_area: :sidebar_left) %>"></div>
|
|
<div class="js-billboard-container pt-4" data-async-url="<%= billboard_path(placement_area: :sidebar_left_2) %>"></div>
|
|
<% cache("footer-modal-#{ForemInstance.deployed_at}-#{Settings::General.admin_action_taken_at&.rfc3339}", expires_in: 24.hours) do %>
|
|
<%= render "layouts/sidebar_footer" %>
|
|
<% end %>
|
|
</aside>
|
|
</div>
|
|
|
|
<%= javascript_include_tag "billboard", defer: true %>
|