File tree Expand file tree Collapse file tree 1 file changed +34
-1
lines changed Expand file tree Collapse file tree 1 file changed +34
-1
lines changed Original file line number Diff line number Diff line change @@ -65,6 +65,39 @@ <h5 class="card-title">License</h5>
65
65
</ div >
66
66
</ div >
67
67
68
+ {% if page.derived_from and page.original_source %}
69
+ < div class ="card bg-light mb-3 " style ="max-width: 48rem; ">
70
+ < div class ="card-body ">
71
+ < h5 class ="card-title "> Provenance</ h5 >
72
+ {% if page.derived_from == page.original_source %}
73
+ < pre > < code class ="language-mermaid " style ="display: flex; justify-content: center ">
74
+ block-beta
75
+ columns 1
76
+ DataSource("{{page.original_source}}") space:1
77
+ Product("{{page.id}}")
78
+ DataSource --> Product
79
+
80
+ style Product stroke:#5588bb,stroke-width:5px;
81
+
82
+ </ code > </ pre >
83
+ {% else %}
84
+ < pre > < code class ="language-mermaid " style ="display: flex; justify-content: center ">
85
+ block-beta
86
+ columns 1
87
+ DataSource("{{page.original_source}}") space:1
88
+ Aggregator("{{page.derived_from}}") space:1
89
+ Product("{{page.id}}")
90
+ DataSource --> Aggregator
91
+ Aggregator --> Product
92
+
93
+ style Product stroke:#5588bb,stroke-width:5px;
94
+
95
+ </ code > </ pre >
96
+ {% endif %}
97
+ {% endif %}
98
+ </ div >
99
+ </ div >
100
+
68
101
{% if page.warnings %}
69
102
{% for warning in page.warnings %}
70
103
< div class ="alert alert-warning " role ="alert ">
@@ -74,7 +107,7 @@ <h5 class="card-title">License</h5>
74
107
{% endif %}
75
108
76
109
{% if page.compatibility %}
77
- < div class ="card px-0 " style ="margin-bottom: 1.5em " id ="publications ">
110
+ < div class ="card px-0 " style ="margin-bottom: 1.5em; max-width: 48rem " id ="publications ">
78
111
< div class ="card-header ">
79
112
< h4 > Compatibility</ h4 >
80
113
</ div >
You can’t perform that action at this time.
0 commit comments