/usr/share/openguides/templates/footer.tt is in openguides 0.82-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | <br clear="all" />
[% UNLESS omit_footer_search_form %]
<div id="search_form">
<form action="search.cgi" method="get">
<strong><label for="search">Search [% site_name %]:</label></strong> <input type="text" size="50" name="search" id="search" value="Search text" onclick="this.value=''" />
<input type="submit" name="Go" value="Go" id="go" class="form_button" />
</form>
</div>
[% END %]
<div id="footer">
[% BLOCK delete_link %]
[% IF enable_page_deletion AND is_admin AND NOT not_deletable %]
<div id="footer_delete_link">
<a href="[% full_cgi_url %]?id=[% node_param %];action=delete">Delete page</a> (admins only)
</div>
[% END %]
[% END %]
[% TRY %]
[% INCLUDE custom_footer_credits.tt %]
[% CATCH %]
[% INCLUDE delete_link %]
<p>
Powered by <a href="[% full_cgi_url%]?action=about">OpenGuides [% openguides_version %]</a>.
[% IF read_only %]
This guide is in read-only mode.
[% END %]
</p>
[% IF licence_name %]
<p>
This work is licensed under the
[% IF licence_url %]
<a href="[% licence_url %]">[% licence_name %]</a>
[% ELSE %]
[% licence_name %]
[% END %]
licence
[% IF licence_info_url %]
(<a href="[% licence_info_url %]">more info</a>)
[% END %]
</p>
[% END %]
[% END %]
</div>
</div>
</div>
[% IF config.google_analytics_key %]
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("[% config.google_analytics_key %]");
pageTracker._trackPageview();
} catch(err) {}
</script>
[% END %]
</body>
</html>
|