/usr/share/bcfg2/Hostbase/templates/base.html is in bcfg2-server 1.2.2-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 | <!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" xml:lang="en" lang="en">
<head>
<title>{% block title %}BCFG2 - Hostbase{% endblock %}</title>
<link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}/boxypastel.css" />
<link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}/base.css" />
<!--<script type="text/javascript" src="http://hostbase.mcs.anl.gov/site_media/main.js"> -->
{% block extra_header_info %}{% endblock %}
</head>
<body>
<div id="header">
<div id="branding">
<h1>BCFG2</h1>
</div>
<div id="user-tools">...Change is Coming...</div>
</div>
<div id="sidebar">
{% block sidebar %}
<ul class="sidebar">
</ul>
{% endblock %}
</div>
<div id="content-main">
<div id="container">
{% block pagebanner %}{% endblock %}
{% block content %}{% endblock %}
</div>
</div>
</body>
</html>
|