/usr/share/skrooge/html/main.txt is in skrooge-common 2.11.0-1build2.
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 102 103 104 105 106 107 108 109 110 111 112 113 114 | <?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style type="text/css">
{{ kde_infopage_css|safe }}
{{ kde_infopage_rtl_css|safe }}
body {
font-size: %3px;
font-family : {{ font_family }};
}
</style>
<title>Skrooge</title>
</head>
<body>
<div id="header">
<div id="headerL"><img src="{{ logo }}" height="128" width="128"/></div>
<div id="headerR"></div>
<div id="title">Skrooge</div>
<div id="tagline"></div>
</div>
<!-- the bar -->
<div id="bar">
<div id="barT">
<div id="barTL"></div>
<div id="barTR"></div>
<div id="barTC"></div>
</div>
<div id="barL">
<div id="barR">
<div id="barCenter" class="bar_text">{{ about_shortdescription|safe }}</div>
</div>
</div>
<div id="barB">
<div id="barBL"></div>
<div id="barBR"></div>
<div id="barBC"></div>
</div>
</div>
<!-- the main text box -->
<div id="box">
<div id="boxT">
<div id="boxTL"></div>
<div id="boxTR"></div>
<div id="boxTC"></div>
</div>
<div id="boxL">
<div id="boxR">
<div id="boxCenter">
<h2 style="margin-top: 0px;">{{ about_welcome }} {{about_version}}</h2>
{{ about_maintext|safe }}
</div>
</div>
</div>
<div id="boxB">
<div id="boxBL"></div>
<div id="boxBR"></div>
<div id="boxBC"></div>
</div>
</div>
<div id="footer">
<div id="footerL"></div>
<div id="footerR"></div>
</div>
<!-- the main text box -->
<div id="box">
<div id="boxT">
<div id="boxTL"></div>
<div id="boxTR"></div>
<div id="boxTC"></div>
</div>
<div id="boxL">
<div id="boxR">
<div id="boxCenter">
<h2 style="margin-top: 0px;"><a onclick="genQuote()">{{ about_did_you_know }}</a></h2>
<div id="quote"></div><br/>
</div>
</div>
</div>
<div id="boxB">
<div id="boxBL"></div>
<div id="boxBR"></div>
<div id="boxBC"></div>
</div>
</div>
<div id="footer">
<div id="footerL"></div>
<div id="footerR"></div>
</div>
<script >
function genQuote() {
document.getElementById('quote').innerHTML = quotes[Math.floor(Math.random() * quotes.length)];
}
//quote array
var quotes = [
{% for item in report.tips_of_day %}
"{{ item|replace:"\";\\\""|safe }}",
{% endfor %}
];
genQuote();
</script>
</body>
</html>
|