This file is indexed.

/usr/share/lazygal/themes/inverted/header.thtml is in lazygal 0.8.8-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
<head xmlns:py="http://genshi.edgewall.org/">

    <meta charset="utf-8" />

    <!--! Site title = 'album_description': 'Album name'  -->
    <title py:if="album_name" py:content="album_name" />

    <!--! Album title = 'album_description': 'Album name'  -->
    <title py:if="name and (image_name == None)" py:content="name" />

    <!--! Image title -->
    <title py:if="name and image_name" py:content="name.rsplit('.', 1)[0].replace('-', ' ').replace('_', ' ').capitalize()" />

    <!--! Site description = '.lazygal': section: '[template-vars]', variable: 'site_description' -->
    <meta py:if="site_description" name="description" content="${site_description}" />

    <!--! Site author = '.lazygal': section: '[template-vars]', variable: 'site_author' -->
    <meta py:if="site_author" name="author" content="${site_author}" />

    <!--! Site keywords = '.lazygal': section: '[template-vars]', variable: 'site_keywords' -->
    <meta py:if="site_keywords" name="keywords" content="${site_keywords}" />

    <!--! Feed url: turn on with cmd option 'puburl' -->
    <!--! or set in configuration file: '.lazygal': section: '[global]', variable: 'puburl' -->
    <link py:if="feed_url" rel="alternate" type="application/rss+xml" title="Recent galleries" href="$feed_url" />

    <!--! Display with what version of lazygal, site was generated -->
    <meta name="Generator" content="lazygal $lazygal_version" />

    <!--! Load all styles from theme folder 'SHARED_.*\.[t]?css' -->
    <link py:for="style in styles" type="text/css"
          rel="$style.rel" media="screen,projection" title="$style.name"
          href="${rel_root}shared/${style.filename}.css" />

    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
    <meta name="viewport" content="width=device-width" />

    <!--[if lt IE 9]>
    <script src="shared/respond.js"></script>
    <![endif]-->

    <!--! Google analytics tracking ID = '.lazygal': section: '[template-vars]', variable: 'google_analytics_tracking_id' -->
    <py:if test="google_analytics_tracking_id">
        <script type="text/javascript">
            var _gaq = _gaq || [];
            _gaq.push(['_setAccount', '${google_analytics_tracking_id}']);
            _gaq.push(['_trackPageview']);
            (function() {
                var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
                ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
                var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
            })();
        </script>
    </py:if>

</head>