Skip to content

Templates, locales and optional navigation menu #8

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 33 additions & 2 deletions config.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,14 @@
//
// The CSS file to load to style the wiki, relative to BASE_URI

define('CSS_FILE', 'index.css');
define('CSS_FILE', 'styles/original.css');

// Templates
//
// The template file to load, should match css, relative to BASE_URI

define('TEMPLATE', 'templates/original.php');


// --------------------
// File upload settings
Expand Down Expand Up @@ -163,4 +170,28 @@

define('W2_SESSION_NAME', 'W2');

?>

// -----------------------------
// Locale and encoding settings
// -----------------------------

// W2_CHARSET
//
// Value for meta charset.

define('W2_CHARSET', 'UTF-8');

// W2_LOCALE
//
// Name for locale.

define('W2_LOCALE', 'en');

// -----------------------------
// Navigation menu
// -----------------------------
//
// Optional navigation menu and its content file

define('NAVMENU', true);
define('NAVMENU_FILE', PAGES_PATH . '/Menu.txt');
160 changes: 0 additions & 160 deletions index.css

This file was deleted.

Loading