first load
This commit is contained in:
23
templates/service_list_page.hbs
Normal file
23
templates/service_list_page.hbs
Normal file
@@ -0,0 +1,23 @@
|
||||
<div class="container-divider"></div>
|
||||
<div class="container">
|
||||
<div class="sub-nav">
|
||||
{{breadcrumbs}}
|
||||
</div>
|
||||
|
||||
<h1>{{t 'services'}}</h1>
|
||||
|
||||
<div id="main-content">
|
||||
<div id="service-catalog"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="module">
|
||||
import { renderServiceCatalogList } from "service-catalog";
|
||||
|
||||
const settings = {{json settings}};
|
||||
const helpCenterPath = {{json (page_path 'help_center')}};
|
||||
const container = document.getElementById("service-catalog");
|
||||
const baseLocale = {{json help_center.base_locale}};
|
||||
|
||||
renderServiceCatalogList(container, settings, helpCenterPath, baseLocale);
|
||||
</script>
|
||||
Reference in New Issue
Block a user