/usr/share/perl5/Kwiki/Theme/Basic.pm is in libkwiki-perl 0.39-2.
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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | package Kwiki::Theme::Basic;
use Kwiki::Theme -Base;
const theme_id => 'basic';
const class_title => 'Basic Theme';
__DATA__
=head1 NAME
Kwiki::Theme::Basic - Kwiki Basic Theme
=head1 SYNOPSIS
=head1 DESCRIPTION
=head1 AUTHOR
Brian Ingerson <INGY@cpan.org>
=head1 COPYRIGHT
Copyright (c) 2004. Brian Ingerson. All rights reserved.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
See http://www.perl.com/perl/misc/Artistic.html
=cut
__theme/basic/template/tt2/theme_screen.html__
[%- INCLUDE theme_html_doctype.html %]
[% INCLUDE theme_html_begin.html %]
<table id="group"><tr>
<td id="group_1">
<div class="navigation">
[% INCLUDE theme_title_pane.html %]
[% INCLUDE theme_toolbar_pane.html %]
[% INCLUDE theme_status_pane.html %]
</div>
<hr />
[% INCLUDE theme_content_pane.html %]
<hr />
<div class="navigation">
[% INCLUDE theme_toolbar2_pane.html %]
</div>
</td>
<td id="group_2">
<div class="navigation">
[% INCLUDE theme_logo_pane.html %]
<br/>
[% INCLUDE theme_widgets_pane.html %]
</div>
</td>
</tr></table>
[% INCLUDE theme_html_end.html -%]
__theme/basic/css/kwiki.css__
#logo_pane {
text-align: center;
}
#logo_pane img {
width: 90px;
}
#group {
width: 100%;
}
#group_1 {
vertical-align: top;
}
#group_2 {
vertical-align: top;
width: 125px;
}
body {
background:#fff;
}
h1, h2, h3, h4, h5, h6 {
margin: 0px;
padding: 0px;
font-weight: bold;
}
.error, .empty {
color: #f00;
}
div.navigation a:visited {
color: #00f;
}
|