phpcsvguestbook/page.php

26 lines
777 B
PHP
Raw Permalink Normal View History

2016-05-06 20:02:56 +00:00
<?php
/**
2017-09-26 16:19:12 +00:00
* Main page of PHPCSV Guestbook
2016-05-06 20:02:56 +00:00
* See settings.php for configuration.
* For changing appearance you can edit this file like simple html. For example: add css tags.
*/
2017-01-27 10:28:04 +00:00
?><!DOCTYPE html>
<html>
2016-05-06 20:02:56 +00:00
<head>
<title><?php echo $Titles["HeadTitle"];?></title>
2016-05-06 20:02:56 +00:00
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
2017-01-27 10:28:04 +00:00
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Ubuntu:regular&amp;subset=Latin,Cyrillic">
<link rel="stylesheet" type="text/css" href="anthrstlsht.css">
2016-05-06 20:02:56 +00:00
</head>
<body>
2017-01-27 10:28:04 +00:00
<div class="container">
2017-09-26 16:19:12 +00:00
<div style="position: absolute; right: 5px; top: 25px;"><?php /* Absolute position of SearchBar */ ?>
<?php AddSearchBar();?>
</div>
2016-05-06 20:02:56 +00:00
<?php AddEntryView();?>
<hr>
<?php EntriesView();?>
2017-01-27 10:28:04 +00:00
</div>
2016-05-06 20:02:56 +00:00
</body>
</html>