style sheet --> stylesheet
[sview.git] / index.php
... / ...
CommitLineData
1<?php include 's.php'; ?>
2
3<!DOCTYPE html>
4<html>
5
6<head>
7 <meta charset="UTF-8"/>
8 <title><?php echo isset($s_title)?$s_title:$b_title; ?></title>
9 <!--CSS styles-->
10 <?php echo isset($s_header)?$s_header:$b_header; ?>
11</head>
12
13<body>
14
15<!--Insert code for the menu here (or after the banner)-->
16
17<!--Some website banner (could also come before the menu)-->
18
19<div class="container">
20 <!--A content is always page-specific, thus always defined, and has no default value-->
21 <?php echo $content; ?>
22</div>
23
24<!--Write the footer here. It is not supposed to be redefined.-->
25
26<?php echo isset($s_javascripts)?$s_javascripts:$b_javascripts; ?>
27
28</body>
29
30</html>