Skip to content

Commit f81aec4

Browse files
committed
updated copyright year and small footer fix
1 parent 80dc679 commit f81aec4

1 file changed

Lines changed: 32 additions & 32 deletions

File tree

survey_dashboard/hmc_layout/en_template.html

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@
157157
href="https://helmholtz-metadaten.de/favicon/favicon.ico"
158158
/>
159159
<meta name="msapplication-config" content="/favicon/browserconfig.xml" />
160-
160+
161161
<!-- Style added for title banner-->
162162
<style>
163163
.banner {
@@ -167,7 +167,7 @@
167167
background-repeat: no-repeat;
168168
align-items: flex-end !important;
169169
}
170-
170+
171171
.d-flex {
172172
display: flex !important;
173173
}
@@ -201,7 +201,7 @@
201201
}
202202

203203
.infobox2 {
204-
204+
205205
border-style:solid;
206206
border-width: 2px;
207207
color: #000000;
@@ -213,7 +213,7 @@
213213
.highlight {
214214
color:#14c8ff;
215215
}
216-
216+
217217
</style>
218218
<!---->
219219

@@ -887,7 +887,7 @@
887887
<span></span>
888888
<span></span>
889889
</button>
890-
890+
891891
To be included later
892892
<div>
893893
<ul class="flex">
@@ -909,10 +909,10 @@
909909
</li>
910910
</ul>
911911
</div>
912-
912+
913913
</div>
914-
915-
914+
915+
916916
</div>
917917

918918
<div
@@ -939,33 +939,33 @@
939939
</ul>
940940
</div>
941941
</div>
942-
</div>
942+
</div>
943943

944944

945945
</div>
946946
</header>
947-
948-
<main class="pb-20 bg-gray-100">
947+
948+
<main class="pb-20 bg-gray-100">
949949

950950
<div class="banner flex-row d-flex" style="background-image: url(./en_files/Banner2.png);">
951951
<div class="container mx-auto mb-12" style="display: flex;padding-left: 72px;">
952952
<span class="text-2xl sm:text-3xl font-display font-bold uppercase text-white" style="display: inline-block; align-self: flex-end;">
953953
{{ app_title }}
954954
</span>
955-
955+
956956
<img src="./en_files/SurveyExplorerLogoInverted.png" style="margin-left:auto; height: 13rem">
957-
957+
958958
</div>
959959
</div>
960960
<div class="pt-10 pb-20 lg:pt-20">
961961
<section>
962962
<div class="container mx-auto mb-24">
963-
963+
964964
<p style="margin-left:36px; margin-bottom:2.5rem;">
965965
Who are the data stakeholders in Helmholtz? What tools do they use? What are the roadblocks to better metadata?
966966
These were some of the questions that we investigated with our HMC community survey in 2021. Here you can browse the results interactively and dive deeper into the data!
967967
</p>
968-
968+
969969
<p style="margin-left: 36px; margin-bottom:12px; margin-top: 2.5rem;">
970970
Refine the displayed data with <b>Global Data Filters</b> and explore
971971
<ul style="margin-left: 72px;font-size: 17px; list-style-type: disc;">
@@ -1006,38 +1006,38 @@
10061006
</div>
10071007
<div class="flex flex-wrap">
10081008
<div class="infobox2" style="min-width: 1200px; margin-top: 5rem; margin-left: 24px; border-color: #002864;">
1009-
1009+
10101010
<p style="margin-bottom: 0px">
1011-
<b style="color: #002864;">DISCLAIMER</b><br>Displayed data should be interpreted with care. Responses might be subject to sample bias and some
1012-
questions were specific to the research field of participants.
1011+
<b style="color: #002864;">DISCLAIMER</b><br>Displayed data should be interpreted with care. Responses might be subject to sample bias and some
1012+
questions were specific to the research field of participants.
10131013
<a href="https://doi.org/10.3289/HMC_publ_05" target="_blank">Check our written publication for further details.</a>
10141014
</p>
1015-
1015+
10161016
</div>
1017-
1017+
10181018
</div>
1019-
1019+
10201020
</div>
10211021
</section>
10221022

10231023
<section>
10241024
<div class="container mx-auto mb-12">
10251025
{% block contents %}
1026-
<div class="flex flex-col w-full lg:space-x-4 lg:flex-row">
1026+
<div class="flex flex-col w-full lg:space-x-4 lg:flex-row">
10271027
<br>
10281028
{% for doc in docs %}
10291029
{{ embed(doc) if doc.elementid }}
10301030
{% for root in doc.roots %}
10311031
{{ embed(root) | indent(10) }}
10321032
{% endfor %}
10331033
{% endfor %}
1034-
1034+
10351035
<!-- Load BokehJS explicitly before Panel app initialization -->
10361036
<script type="text/javascript" src="static/js/bokeh.min.js"></script>
10371037
<script type="text/javascript" src="static/js/bokeh-gl.min.js"></script>
10381038
<script type="text/javascript" src="static/js/bokeh-widgets.min.js"></script>
10391039
<script type="text/javascript" src="static/js/bokeh-tables.min.js"></script>
1040-
1040+
10411041
<!-- Ensure BokehJS is loaded before Panel app initialization -->
10421042
<script type="text/javascript">
10431043
// Override the default Bokeh error handling to prevent the "library missing" error
@@ -1048,7 +1048,7 @@
10481048
}
10491049
return true; // Show error only if BokehJS is truly missing
10501050
};
1051-
1051+
10521052
// Wait for BokehJS to be fully loaded
10531053
function ensureBokehJSLoaded() {
10541054
return new Promise((resolve) => {
@@ -1063,15 +1063,15 @@
10631063
checkBokehJS();
10641064
});
10651065
}
1066-
1066+
10671067
// Initialize Panel app only after BokehJS is loaded
10681068
document.addEventListener('DOMContentLoaded', function() {
10691069
ensureBokehJSLoaded().then(() => {
10701070
console.log('Panel app can now initialize safely');
10711071
});
10721072
});
10731073
</script>
1074-
1074+
10751075
{{ plot_script | indent(8) }}
10761076
<div class="container mx-auto mb-24">
10771077
<div class="row">
@@ -1188,7 +1188,7 @@
11881188
target="_blank"
11891189
>
11901190
<img src="./en_files/github-mark-white.png" width="24px" height="24px">
1191-
1191+
11921192
</a>
11931193
</li>
11941194
</ul>
@@ -1203,8 +1203,8 @@
12031203
href="https://dashboard.survey.helmholtz-metadaten.de"
12041204
class="text-white"
12051205
>
1206-
HMC Survey Data Explorer Dashboard:</a
1207-
>
1206+
HMC Survey Data Explorer Dashboard
1207+
</a>
12081208
</li>
12091209
</ul>
12101210
</nav>
@@ -1244,7 +1244,7 @@
12441244
</div>
12451245
<div class="mb-6">
12461246
<div class="text-white text-sm">
1247-
© 2023 Helmholtz Metadata Collaboration
1247+
© 2025 Helmholtz Metadata Collaboration
12481248
</div>
12491249
</div>
12501250
</div>
@@ -2014,5 +2014,5 @@
20142014
})();
20152015
</script>
20162016
<!-- End Matomo Code -->
2017-
2017+
20182018
{% endblock %}

0 commit comments

Comments
 (0)