Skip to content

Commit

Permalink
update frame_insert template
Browse files Browse the repository at this point in the history
  • Loading branch information
bricas committed Apr 29, 2024
1 parent 5675f4c commit 4d1c362
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions build/app/templates/frame_insert.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,21 @@

<div id="app" style="width: 100%; height: 200px"></div>
<script>
VueUI.main("{{ static_prefix }}", "{{ url }}", "{{ wb_prefix }}", "{{ timestamp }}", "{{ ui.logo }}", "{{ ui.navbar_background_hex | default('f8f9fa') }}", "{{ ui.navbar_color_hex | default('212529') }}", "{{ ui.navbar_light_buttons }}", "{{ env.pywb_lang | default('en') }}",
allLocales, i18nStrings);
VueUI.main({
staticPrefix: "{{ static_prefix }}",
url: "{{ url }}",
prefix: "{{ wb_prefix }}",
timestamp: "{{ timestamp }}",
logoUrl: "{{ ui.logo }}",
navbarBackground: "{{ ui.navbar_background_hex | default('f8f9fa') }}",
navbarColor: "{{ ui.navbar_color_hex | default('212529') }}",
navbarLightButtons: "{{ ui.navbar_light_buttons }}",
logoHomeUrl: "{{ ui.logo_home_url }}",
disablePrinting: "{{ ui.disable_printing }}",
allLocales: allLocales
},
"{{ env.pywb_lang | default('en') }}",
i18nStrings);
</script>

<div id="wb_iframe_div">
Expand Down

0 comments on commit 4d1c362

Please sign in to comment.