librecat/index.php

27 lines
669 B
PHP
Executable File

<?php
include("include/header.php");
include("include/settings.php");
?>
<!DOCTYPE html>
<html>
<head>
<title>LibreCat</title>
<?php include("themes/$theme_name/index.php"); ?>
</head>
<body>
<div class="main-container">
<img class="frontpage-logo" src="/themes/<?= $theme_name?>/assets/logo_1000px.png" alt="LibreCat logo">
<h1 class="title">LibreCat</h1>
<p class="site-description"> Welcome to LibreCat!</p>
<p class="site-description">
LibreCat is a project born out of the lack of Free and
Opens Source solution for a Q&ampA service. It is licensed
under the GPLv3 license and is based on PHP and SQLite3.
No JS is used.
</p>
</div>
</body>
</html>