diff options
-rw-r--r-- | INSTALL | 1 | ||||
-rw-r--r-- | data/local/.gitignore | 1 | ||||
-rw-r--r-- | data/local/examples/.gitignore | 1 | ||||
-rw-r--r-- | data/local/examples/header.inc.php | 4 | ||||
-rw-r--r-- | data/local/examples/style.css | 4 |
5 files changed, 11 insertions, 0 deletions
@@ -17,6 +17,7 @@ * Add ./crontab or something similar to the user's crontab +* Copy ./data/local/examples/contact-info.php to ./data/local/ and edit it # Generate the first user diff --git a/data/local/.gitignore b/data/local/.gitignore new file mode 100644 index 000000000..d367a4a5c --- /dev/null +++ b/data/local/.gitignore @@ -0,0 +1 @@ +contact-info.php diff --git a/data/local/examples/.gitignore b/data/local/examples/.gitignore new file mode 100644 index 000000000..d838da986 --- /dev/null +++ b/data/local/examples/.gitignore @@ -0,0 +1 @@ +examples/ diff --git a/data/local/examples/header.inc.php b/data/local/examples/header.inc.php new file mode 100644 index 000000000..dce4cc5bd --- /dev/null +++ b/data/local/examples/header.inc.php @@ -0,0 +1,4 @@ +<!-- +This header will be included right after the <body> tag. +Use it to prepend your own site's navigation if needed. +--> diff --git a/data/local/examples/style.css b/data/local/examples/style.css new file mode 100644 index 000000000..846bd0118 --- /dev/null +++ b/data/local/examples/style.css @@ -0,0 +1,4 @@ +/* + * This style will be included after all other style sheets. + * Use it to override any CSS rule to suite your needs + */ |