-
Notifications
You must be signed in to change notification settings - Fork 41
/
Footer.shtml
38 lines (33 loc) · 1.84 KB
/
Footer.shtml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!-- Footer.shtml since 2021 -->
<hr class="hide">
<div id="footer">
<ul id="bn"></ul><!-- seems necessary to the formatting? -->
<p>Thanks and congratulations to
<a href="/help/en/Acknowledgements.shtml" title="Who is JMRI">
all who contributed</a>! Contact us via the <a href="https://groups.io/g/jmriusers">JMRI users</a> Groups.io
group.
</p>
<p>Copyright © 1997 - 2024 JMRI Community.
JMRI®, DecoderPro®, PanelPro™, DispatcherPro™, OperationsPro™, SignalPro™, SoundPro™, TrainPro™, Logix™, LogixNG™ and associated logos are our trademarks.
<a href="/copyright.shtml">Additional information on copyright, trademarks and licenses is linked here.</a>
</p>
<p>
<!-- Add a link to Github history of file -->
View the
<script> // HTMl for each page is generated by the following Javascript
var target = window.location.pathname;
target = (target.slice(-1) == "/") ? target+"index.shtml" : target; // do default expansion of empty to index
// check repository - only directories with files that include Footer.shtml
if (target.slice(0,6) == "/help/") {
target = "https://github.com/JMRI/JMRI/blob/master"+target;
} else if (target.slice(0,5) == "/xml/") {
target = "https://github.com/JMRI/JMRI/blob/master"+target;
} else { // must be in JMRI/website
target = "https://github.com/JMRI/website/blob/master"+target;
}
//document.write(target+" ")
document.write("<a href=\""+target+"\" title=\"File history on GitHub.com\">history of this page and propose edits</a>.")
</script>
</p>
</div>
<!-- /Footer.shtml -->