change embedded owm script to insert the <script> at a different place.
makes viewing the source nicer.
<script src="{{url_for('static', filename='c3.min.js')}}"></script>
<script src="{{url_for('static', filename='strftime-min.js')}}"></script>
+ <!-- here the owm script will be appended -->
+
<title>Seepark Obsteig</title>
</head>
<body>
script.async = true;
script.charset = "utf-8";
script.src = "//openweathermap.org/themes/openweathermap/assets/vendor/owm/js/weather-widget-generator.js";
- var s = document.getElementsByTagName('script')[0];
+ var s = document.getElementsByTagName('title')[0];
s.parentNode.insertBefore(script, s);
})();
</script>