@rettangoli/sites 0.1.1 → 0.2.0-rc2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +258 -66
- package/package.json +8 -11
- package/src/cli/build.js +28 -160
- package/src/cli/index.js +2 -2
- package/src/createSiteBuilder.js +350 -0
- package/src/index.js +3 -0
- package/src/rtglMarkdown.js +126 -0
- package/src/cli/components/core/articlelist.html +0 -19
- package/src/cli/components/core/cta1.html +0 -9
- package/src/cli/components/core/features1.html +0 -24
- package/src/cli/components/core/hero1.html +0 -4
- package/src/cli/components/core/hero2.html +0 -31
- package/src/cli/components/core/sectionlist1.html +0 -15
- package/src/cli/components/core/spacer.html +0 -1
- package/src/cli/components/core/table1.html +0 -2
- package/src/cli/templates/core/admin.html +0 -21
- package/src/cli/templates/core/agreementList.html +0 -102
- package/src/cli/templates/core/article.html +0 -35
- package/src/cli/templates/core/base.html +0 -28
- package/src/cli/templates/core/documentation.html +0 -28
- package/src/cli/templates/core/footer.html +0 -34
- package/src/cli/templates/core/htmlHeader.html +0 -41
- package/src/cli/templates/core/htmlHeaderTable.html +0 -113
- package/src/cli/templates/core/navbar.html +0 -11
- package/src/common.js +0 -803
- package/src/markdownItAsync.js +0 -101
|
@@ -1,102 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
|
|
4
|
-
<head>
|
|
5
|
-
{% include "core/htmlHeader.html" %}
|
|
6
|
-
</head>
|
|
7
|
-
|
|
8
|
-
<body>
|
|
9
|
-
<rtgl-view bgc="su" w="f" ah="c">
|
|
10
|
-
<rtgl-view md-w="100vw" lg-w="768" w="1024" p="lg">
|
|
11
|
-
{% include "core/navbar.html" %}
|
|
12
|
-
<rtgl-view h="48"></rtgl-view>
|
|
13
|
-
<rtgl-text s="dm" mt="lg">Agreements</rtgl-text>
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
<rtgl-text s="tl" mt="lg">Current Effective Agreements</rtgl-text>
|
|
17
|
-
|
|
18
|
-
<rtgl-view h="24"></rtgl-view>
|
|
19
|
-
|
|
20
|
-
{%- for agreement in collections['agreement'] -%}
|
|
21
|
-
{%- if agreement.status == 'Effective' -%}
|
|
22
|
-
<rtgl-view h="32" av="c" mt="lg">
|
|
23
|
-
<rtgl-text s="ll">
|
|
24
|
-
<a href="{{ agreement.url }}">{{ agreement.title }} {{ agreement.version }}</a>
|
|
25
|
-
</rtgl-text>
|
|
26
|
-
</rtgl-view>
|
|
27
|
-
{%- endif -%}
|
|
28
|
-
{%- endfor -%}
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
<rtgl-view h="48"></rtgl-view>
|
|
32
|
-
<rtgl-text s="tl">Past agreements changelog</rtgl-text>
|
|
33
|
-
|
|
34
|
-
<rtgl-view h="32" av="c" mt="lg">
|
|
35
|
-
<rtgl-text s="tm">
|
|
36
|
-
Privacy Policy
|
|
37
|
-
</rtgl-text>
|
|
38
|
-
</rtgl-view>
|
|
39
|
-
|
|
40
|
-
<rtgl-view w="calc(100vw - 32px)" sh>
|
|
41
|
-
<rtgl-view w="640px">
|
|
42
|
-
<rtgl-view d="h">
|
|
43
|
-
<rtgl-view w="120"><rtgl-text s="bm">Version</rtgl-text></rtgl-view>
|
|
44
|
-
<rtgl-view w="120"><rtgl-text s="bm">Effective Date</rtgl-text></rtgl-view>
|
|
45
|
-
<rtgl-view w="120"><rtgl-text s="bm">Status</rtgl-text></rtgl-view>
|
|
46
|
-
<rtgl-view w="240"><rtgl-text s="bm">Changes</rtgl-text></rtgl-view>
|
|
47
|
-
</rtgl-view>
|
|
48
|
-
|
|
49
|
-
{%- for agreement in collections['privacy-policy'] -%}
|
|
50
|
-
<rtgl-view d="h">
|
|
51
|
-
<rtgl-view w="120"><rtgl-text s="bm"><a href="{{ agreement.url }}">{{ agreement.version
|
|
52
|
-
}}</a></rtgl-text></rtgl-view>
|
|
53
|
-
<rtgl-view w="120"><rtgl-text s="bm">{{ agreement.effective_date | postDate }}</rtgl-text></rtgl-view>
|
|
54
|
-
<rtgl-view w="120"><rtgl-text s="bm">{{ agreement.status }}</rtgl-text></rtgl-view>
|
|
55
|
-
<rtgl-view w="240"><rtgl-text s="bm">
|
|
56
|
-
{%- for change in agreement.summary_of_changes -%}
|
|
57
|
-
<li>{{ change }}</li>
|
|
58
|
-
{%- endfor -%}
|
|
59
|
-
</rtgl-text></rtgl-view>
|
|
60
|
-
</rtgl-view>
|
|
61
|
-
{%- endfor -%}
|
|
62
|
-
</rtgl-view>
|
|
63
|
-
</rtgl-view>
|
|
64
|
-
|
|
65
|
-
<rtgl-view h="32" av="c" mt="lg">
|
|
66
|
-
<rtgl-text s="tm">
|
|
67
|
-
Terms of Service
|
|
68
|
-
</rtgl-text>
|
|
69
|
-
</rtgl-view>
|
|
70
|
-
|
|
71
|
-
<rtgl-view w="calc(100vw - 32px)" sh>
|
|
72
|
-
<rtgl-view w="640px">
|
|
73
|
-
<rtgl-view d="h">
|
|
74
|
-
<rtgl-view w="120"><rtgl-text s="bm">Version</rtgl-text></rtgl-view>
|
|
75
|
-
<rtgl-view w="120"><rtgl-text s="bm">Effective Date</rtgl-text></rtgl-view>
|
|
76
|
-
<rtgl-view w="120"><rtgl-text s="bm">Status</rtgl-text></rtgl-view>
|
|
77
|
-
<rtgl-view w="240"><rtgl-text s="bm">Changes</rtgl-text></rtgl-view>
|
|
78
|
-
</rtgl-view>
|
|
79
|
-
|
|
80
|
-
{%- for agreement in collections['terms-of-service'] -%}
|
|
81
|
-
<rtgl-view d="h">
|
|
82
|
-
<rtgl-view w="120"><rtgl-text s="bm"><a href="{{ agreement.url }}">{{ agreement.version
|
|
83
|
-
}}</a></rtgl-text></rtgl-view>
|
|
84
|
-
<rtgl-view w="120"><rtgl-text s="bm">{{ agreement.effective_date | postDate }}</rtgl-text></rtgl-view>
|
|
85
|
-
<rtgl-view w="120"><rtgl-text s="bm">{{ agreement.status }}</rtgl-text></rtgl-view>
|
|
86
|
-
<rtgl-view w="240"><rtgl-text s="bm">
|
|
87
|
-
{%- for change in agreement.summary_of_changes -%}
|
|
88
|
-
<li>{{ change }}</li>
|
|
89
|
-
{%- endfor -%}
|
|
90
|
-
</rtgl-text></rtgl-view>
|
|
91
|
-
</rtgl-view>
|
|
92
|
-
{%- endfor -%}
|
|
93
|
-
</rtgl-view>
|
|
94
|
-
</rtgl-view>
|
|
95
|
-
</rtgl-view>
|
|
96
|
-
|
|
97
|
-
{% include "core/footer.html" %}
|
|
98
|
-
</rtgl-view>
|
|
99
|
-
|
|
100
|
-
</body>
|
|
101
|
-
|
|
102
|
-
</html>
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
|
|
4
|
-
<head>
|
|
5
|
-
{% include "core/htmlHeader.html" %}
|
|
6
|
-
</head>
|
|
7
|
-
|
|
8
|
-
<body class="dark">
|
|
9
|
-
<rtgl-view id="top" bgc="su" w="f" ah="c">
|
|
10
|
-
<rtgl-view md-w="100vw" w="768" p="lg">
|
|
11
|
-
<rtgl-view h="72"></rtgl-view>
|
|
12
|
-
<rtgl-text><a href="{{ layoutConfiguration.back.href | default: "/" }}">{{ layoutConfiguration.back.label | default: "Back" }}
|
|
13
|
-
</a></rtgl-text>
|
|
14
|
-
<rtgl-text s="h1" mt="lg"><a href="#" style="display: contents;">{{ title }}</a></rtgl-text>
|
|
15
|
-
{% if date %}
|
|
16
|
-
<rtgl-text mt="sm">{{ date | postDate }}</rtgl-text>
|
|
17
|
-
{% endif %}
|
|
18
|
-
<rtgl-view mt="lg" id="content-container" w="f">
|
|
19
|
-
{{ content }}
|
|
20
|
-
<rtgl-view h="128"></rtgl-view>
|
|
21
|
-
<rtgl-view w="f" ah="c">
|
|
22
|
-
<rtgl-text s="lg"><a href="#top">Back to top</a></rtgl-text>
|
|
23
|
-
</rtgl-view>
|
|
24
|
-
</rtgl-view>
|
|
25
|
-
</rtgl-view>
|
|
26
|
-
|
|
27
|
-
<rtgl-view pos="fix" cor="right" style="top: 32px" sv w="256" h="100vh" p="xl" g="lg" xl-hidden>
|
|
28
|
-
<rtgl-page-outline id="page-outline"></rtgl-page-outline>
|
|
29
|
-
</rtgl-view>
|
|
30
|
-
{% include "core/footer.html" %}
|
|
31
|
-
{% include "core/navbar.html" %}
|
|
32
|
-
</rtgl-view>
|
|
33
|
-
</body>
|
|
34
|
-
|
|
35
|
-
</html>
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
|
|
4
|
-
<head>
|
|
5
|
-
{% include "core/htmlHeader.html" %}
|
|
6
|
-
</head>
|
|
7
|
-
|
|
8
|
-
{% assign base_template_size_attrs = "w=\"768\"" %}
|
|
9
|
-
{% unless layoutConfiguration.size == "small" %}
|
|
10
|
-
{% assign base_template_size_attrs = "w=\"1024\" lg-w=\"768\"" %}
|
|
11
|
-
{% endunless %}
|
|
12
|
-
|
|
13
|
-
<body class="dark">
|
|
14
|
-
<rtgl-view h="48"></rtgl-view>
|
|
15
|
-
<rtgl-view w="f" ah="c">
|
|
16
|
-
<rtgl-view
|
|
17
|
-
md-w="100vw"
|
|
18
|
-
{{ base_template_size_attrs }}
|
|
19
|
-
ph="lg"
|
|
20
|
-
pb="lg">
|
|
21
|
-
{{ content }}
|
|
22
|
-
</rtgl-view>
|
|
23
|
-
{% include "core/footer.html" %}
|
|
24
|
-
</rtgl-view>
|
|
25
|
-
{% include "core/navbar.html" %}
|
|
26
|
-
</body>
|
|
27
|
-
|
|
28
|
-
</html>
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
|
|
4
|
-
<head>
|
|
5
|
-
{% include "core/htmlHeader.html" %}
|
|
6
|
-
</head>
|
|
7
|
-
|
|
8
|
-
<body class="dark">
|
|
9
|
-
<rtgl-view bgc="bg" w="f" ah="c" h="f">
|
|
10
|
-
<rtgl-view d="h" w="f" h="f">
|
|
11
|
-
<rtgl-view md-hidden h="100vh">
|
|
12
|
-
<rtgl-sidebar header="{{ docs.header | json-escaped }}" items="{{ docs.items | json-escaped }}"></rtgl-sidebar>
|
|
13
|
-
</rtgl-view>
|
|
14
|
-
<rtgl-view flex="1" ah="c" h="100vh">
|
|
15
|
-
<rtgl-view pv="lg" md-w="100vw" w="720" ph="xl" sv id="content-container">
|
|
16
|
-
<rtgl-text s="h1" mb="md">{{ title }}</rtgl-text>
|
|
17
|
-
{{ content }}
|
|
18
|
-
<rtgl-view h="50vh"></rtgl-view>
|
|
19
|
-
</rtgl-view>
|
|
20
|
-
</rtgl-view>
|
|
21
|
-
<rtgl-view sv w="256" h="100vh" p="xl" g="lg" xl-hidden>
|
|
22
|
-
<rtgl-page-outline id="page-outline" target-id="content-container"></rtgl-page-outline>
|
|
23
|
-
</rtgl-view>
|
|
24
|
-
</rtgl-view>
|
|
25
|
-
</rtgl-view>
|
|
26
|
-
</body>
|
|
27
|
-
|
|
28
|
-
</html>
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
{% if footer %}
|
|
2
|
-
<rtgl-view d="h" h="30vh"></rtgl-view>
|
|
3
|
-
<rtgl-view h="1" w="f"></rtgl-view>
|
|
4
|
-
<rtgl-view g="lg" d="h" p="lg" md-w="100vw" lg-w="768" w="1024" pv="xl">
|
|
5
|
-
<rtgl-view g="xl" flex="1" ah="sm">
|
|
6
|
-
<a href="/" aria-label="Home" style="display: contents; text-decoration: none; color: inherit;"><rtgl-image h="{{ footer.logo.height }}"
|
|
7
|
-
w="{{ footer.logo.width }}" src="{{ footer.logo.src }}" alt="{{ footer.logo.alt | default: 'Company logo' }}">
|
|
8
|
-
</rtgl-image></a>
|
|
9
|
-
<rtgl-view d="h" g="l" av="c">
|
|
10
|
-
{%- for social in footer.social -%}
|
|
11
|
-
<a href="{{ social.href }}" target="_blank" rel="noreferrer" aria-label="Visit our {{ social.name }} page"
|
|
12
|
-
style="display: contents; text-decoration: none; color: inherit;">
|
|
13
|
-
<rtgl-svg h-cur="p" f="on-su" svg="{{ social.svg }}" wh="20">
|
|
14
|
-
</rtgl-svg>
|
|
15
|
-
</a>
|
|
16
|
-
{%- endfor -%}
|
|
17
|
-
</rtgl-view>
|
|
18
|
-
</rtgl-view>
|
|
19
|
-
|
|
20
|
-
<rtgl-view d="h" flex="2">
|
|
21
|
-
{%- for feature in footer.columns -%}
|
|
22
|
-
<rtgl-view d="h" flex="1" ah="c">
|
|
23
|
-
<rtgl-view g="lg">
|
|
24
|
-
{%- for link in feature.links -%}
|
|
25
|
-
<rtgl-text s="bm" c="on-suv"> <a href="{{ link.href }}" {% if link.newTab %}target="_blank" rel="noreferrer" {%
|
|
26
|
-
endif %}> <u> {{ link.text }} </u></a> </rtgl-text>
|
|
27
|
-
{%- endfor -%}
|
|
28
|
-
</rtgl-view>
|
|
29
|
-
</rtgl-view>
|
|
30
|
-
{%- endfor -%}
|
|
31
|
-
</rtgl-view>
|
|
32
|
-
|
|
33
|
-
</rtgl-view>
|
|
34
|
-
{% endif %}
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
<meta charset="utf-8" />
|
|
2
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
3
|
-
<title>{{ title }}</title>
|
|
4
|
-
<meta name="description" content="{{ og.description }}" />
|
|
5
|
-
<link rel="canonical" href="{{ baseUrl | append: url }}" />
|
|
6
|
-
<link rel="icon" type="image/x-icon" href="/public/favicon.png">
|
|
7
|
-
|
|
8
|
-
<!-- Open Graph tags -->
|
|
9
|
-
<meta property="og:title" content="{{ og.title | default: title }}" />
|
|
10
|
-
<meta property="og:description" content="{{ og.description }}" />
|
|
11
|
-
<meta property="og:site_name" content="{{ og.siteName }}" />
|
|
12
|
-
<meta property="og:type" content="{{ og.type }}" />
|
|
13
|
-
<meta property="og:url" content="{{ baseUrl | append: url }}" />
|
|
14
|
-
<meta property="og:image" content="{{ og.image }}" />
|
|
15
|
-
<meta property="og:image:width" content="{{ og.imageWidth | default: '1200' }}" />
|
|
16
|
-
<meta property="og:image:height" content="{{ og.imageHeight | default: '630' }}" />
|
|
17
|
-
<meta property="og:image:alt" content="{{ og.imageAlt }}" />
|
|
18
|
-
<meta property="og:image:type" content="{{ og.imageType }}" />
|
|
19
|
-
|
|
20
|
-
<!-- Twitter Card tags -->
|
|
21
|
-
<meta name="twitter:card" content="{{ twitter.card | default: 'summary_large_image' }}" />
|
|
22
|
-
<meta name="twitter:title" content="{{ og.title }}" />
|
|
23
|
-
<meta name="twitter:description" content="{{ og.description }}" />
|
|
24
|
-
<meta name="twitter:image" content="{{ og.image }}" />
|
|
25
|
-
<meta name="twitter:image:alt" content="{{ og.imageAlt }}" />
|
|
26
|
-
|
|
27
|
-
<!-- Styles and scripts -->
|
|
28
|
-
<script src="/public/rtgl-icons.js"></script>
|
|
29
|
-
<script src="https://cdn.jsdelivr.net/npm/construct-style-sheets-polyfill@3.1.0/dist/adoptedStyleSheets.min.js"></script>
|
|
30
|
-
<script src="https://cdn.jsdelivr.net/npm/@rettangoli/ui@0.1.1/dist/rettangoli-iife-ui.min.js"></script>
|
|
31
|
-
<script>
|
|
32
|
-
window.addEventListener('DOMContentLoaded', () => {
|
|
33
|
-
if (location.hash) {
|
|
34
|
-
const el = document.getElementById(location.hash.substring(1));
|
|
35
|
-
if (el) {
|
|
36
|
-
el.scrollIntoView({ behavior: 'auto' });
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
});
|
|
40
|
-
</script>
|
|
41
|
-
<link href="/public/theme.css" rel="stylesheet" />
|
|
@@ -1,113 +0,0 @@
|
|
|
1
|
-
<script type="module" defer>
|
|
2
|
-
import { html, render } from 'https://cdn.jsdelivr.net/npm/uhtml@4.7.0/+esm'
|
|
3
|
-
const RettangoliTable = ({ render, html, baseClass }) => {
|
|
4
|
-
const MyClass = baseClass || HTMLElement;
|
|
5
|
-
return class RettangoliTable extends MyClass {
|
|
6
|
-
columns = [];
|
|
7
|
-
rows = [];
|
|
8
|
-
|
|
9
|
-
constructor() {
|
|
10
|
-
super();
|
|
11
|
-
this.shadow = this.attachShadow({ mode: "closed" });
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
connectedCallback() {
|
|
15
|
-
render(this.shadow, this.render);
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
static get observedAttributes() {
|
|
19
|
-
return ["key", "wh", "w", "h", "hidden", "s-w", "s-h", "s-d"];
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
attributeChangedCallback(name, oldValue, newValue) {
|
|
23
|
-
setTimeout(() => {
|
|
24
|
-
render(this.shadow, this.render);
|
|
25
|
-
}, 0);
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
render = () => {
|
|
29
|
-
const columnsAttribute = this.getAttribute('columns')
|
|
30
|
-
const rowsAttribute = this.getAttribute('rows')
|
|
31
|
-
const columns = this.columns || columnsAttribute ? JSON.parse(decodeURIComponent(columnsAttribute)) : [];
|
|
32
|
-
const rows = this.rows || rowsAttribute ? JSON.parse(decodeURIComponent(rowsAttribute)) : [];
|
|
33
|
-
|
|
34
|
-
if (columns.length === 0) {
|
|
35
|
-
return html`
|
|
36
|
-
<rtgl-view h="f" w="f" bgc="su">
|
|
37
|
-
<rtgl-text s="ll">No data</rtgl-text>
|
|
38
|
-
</rtgl-view>
|
|
39
|
-
`;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
return html`
|
|
43
|
-
<rtgl-view sh h="calc(100vh - 48px)" w="calc(100vw - 200px - 32px)">
|
|
44
|
-
<rtgl-view
|
|
45
|
-
bgc="bg"
|
|
46
|
-
d="h"
|
|
47
|
-
style="flex-wrap: nowrap; position: sticky; top: 0; z-index: 2;"
|
|
48
|
-
>
|
|
49
|
-
${columns.map((column, index) => {
|
|
50
|
-
const isFirst = index === 0;
|
|
51
|
-
const style = isFirst
|
|
52
|
-
? "overflow-wrap: anywhere; position: sticky; left: 0; z-index: 3;"
|
|
53
|
-
: "overflow-wrap: anywhere; ";
|
|
54
|
-
return html`
|
|
55
|
-
<rtgl-view
|
|
56
|
-
ph="m"
|
|
57
|
-
pv="s"
|
|
58
|
-
h="f"
|
|
59
|
-
bgc="bg"
|
|
60
|
-
w=${column.width}
|
|
61
|
-
style=${style}
|
|
62
|
-
bwl=${isFirst ? "xs" : ""}
|
|
63
|
-
bwr="xs"
|
|
64
|
-
bwb="xs"
|
|
65
|
-
bwt="xs"
|
|
66
|
-
>
|
|
67
|
-
<rtgl-text s="ll">${column.label}</rtgl-text>
|
|
68
|
-
</rtgl-view>
|
|
69
|
-
`;
|
|
70
|
-
})}
|
|
71
|
-
</rtgl-view>
|
|
72
|
-
|
|
73
|
-
<rtgl-view bgc="ov">
|
|
74
|
-
${rows.map(
|
|
75
|
-
(row) => html`
|
|
76
|
-
<rtgl-view d="h" style="flex-wrap: nowrap;">
|
|
77
|
-
${columns.map((column, index) => {
|
|
78
|
-
const isFirst = index === 0;
|
|
79
|
-
const style = isFirst
|
|
80
|
-
? "overflow-wrap: anywhere; position: sticky; left: 0; z-index: 1;"
|
|
81
|
-
: "overflow-wrap: anywhere; ";
|
|
82
|
-
return html`
|
|
83
|
-
<rtgl-view
|
|
84
|
-
ph="m"
|
|
85
|
-
pv="s"
|
|
86
|
-
h="f"
|
|
87
|
-
bgc="bg"
|
|
88
|
-
w=${column.width}
|
|
89
|
-
bwr="xs"
|
|
90
|
-
bwl=${isFirst ? "xs" : ""}
|
|
91
|
-
bwb="xs"
|
|
92
|
-
style=${style}
|
|
93
|
-
>
|
|
94
|
-
<rtgl-text s="bs">${row[column.key]}</rtgl-text>
|
|
95
|
-
</rtgl-view>
|
|
96
|
-
`;
|
|
97
|
-
})}
|
|
98
|
-
</rtgl-view>
|
|
99
|
-
`
|
|
100
|
-
)}
|
|
101
|
-
</rtgl-view>
|
|
102
|
-
</rtgl-view>
|
|
103
|
-
`;
|
|
104
|
-
};
|
|
105
|
-
};
|
|
106
|
-
};
|
|
107
|
-
|
|
108
|
-
customElements.define('rtgl-table', RettangoliTable({
|
|
109
|
-
render,
|
|
110
|
-
html
|
|
111
|
-
}))
|
|
112
|
-
|
|
113
|
-
</script>
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<rtgl-view pos="abs" cor="top" ah="c" bgc="bg">
|
|
2
|
-
<rtgl-view md-w="100vw" lg-w="768" w="1024">
|
|
3
|
-
<rtgl-navbar start="{{ navbar.start | json-escaped }}" id="navbar">
|
|
4
|
-
{% if navbar.right %}
|
|
5
|
-
<rtgl-view slot="right">
|
|
6
|
-
{{ navbar.right }}
|
|
7
|
-
</rtgl-view>
|
|
8
|
-
{% endif %}
|
|
9
|
-
</rtgl-navbar>
|
|
10
|
-
</rtgl-view>
|
|
11
|
-
</rtgl-view>
|