Add and style config screen
This commit is contained in:
parent
889a48b971
commit
b4f4dfa085
Binary file not shown.
|
@ -1,2 +1,28 @@
|
||||||
*.db
|
*.db
|
||||||
*~
|
*~
|
||||||
|
*.secret
|
||||||
|
|
||||||
|
### Vim ###
|
||||||
|
# Swap
|
||||||
|
[._]*.s[a-v][a-z]
|
||||||
|
[._]*.sw[a-p]
|
||||||
|
[._]s[a-rt-v][a-z]
|
||||||
|
[._]ss[a-gi-z]
|
||||||
|
[._]sw[a-p]
|
||||||
|
|
||||||
|
# Session
|
||||||
|
Session.vim
|
||||||
|
Sessionx.vim
|
||||||
|
|
||||||
|
# Temporary
|
||||||
|
.netrwhist
|
||||||
|
*~
|
||||||
|
|
||||||
|
# Auto-generated tag files
|
||||||
|
tags
|
||||||
|
|
||||||
|
# Persistent undo
|
||||||
|
[._]*.un~
|
||||||
|
|
||||||
|
# Coc configuration directory
|
||||||
|
.vim
|
||||||
|
|
18
config.php
18
config.php
|
@ -1,8 +1,26 @@
|
||||||
<?php
|
<?php
|
||||||
include("include/header.php");
|
include("include/header.php");
|
||||||
|
include("include/settings.php");
|
||||||
session_start();
|
session_start();
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
|
<head>
|
||||||
|
|
||||||
|
<title>Config | LibreCat</title>
|
||||||
|
<?php include("themes/$theme_name/config.php"); ?>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
<h1>Config</h1>
|
<h1>Config</h1>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
For now this section is under construction, but
|
||||||
|
I have activated it to log vinculate accounts with
|
||||||
|
Twitter.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
<?php
|
||||||
|
include("main.php");
|
||||||
|
?>
|
Loading…
Reference in New Issue