librecat/index.php

27 lines
669 B
PHP
Raw Normal View History

2020-05-17 00:02:20 +00:00
<?php
2020-05-21 15:57:59 +00:00
include("include/header.php");
2020-05-31 02:32:02 +00:00
include("include/settings.php");
2020-05-17 00:02:20 +00:00
?>
2020-05-31 02:32:02 +00:00
<!DOCTYPE html>
2020-05-17 20:06:22 +00:00
<html>
2020-05-31 02:32:02 +00:00
<head>
<title>LibreCat</title>
2020-05-31 02:32:02 +00:00
<?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>
2020-05-17 20:06:22 +00:00
</html>