diff options
Diffstat (limited to 'data/local')
-rw-r--r-- | data/local/.gitignore | 5 | ||||
-rw-r--r-- | data/local/examples/.gitignore | 3 | ||||
-rw-r--r-- | data/local/examples/contact-info.php | 4 | ||||
-rw-r--r-- | data/local/examples/favicon.png | 0 | ||||
-rw-r--r-- | data/local/examples/header.inc.php | 4 | ||||
-rw-r--r-- | data/local/examples/logo.svg | 0 | ||||
-rw-r--r-- | data/local/examples/style.css | 4 |
7 files changed, 20 insertions, 0 deletions
diff --git a/data/local/.gitignore b/data/local/.gitignore new file mode 100644 index 000000000..a6c22d616 --- /dev/null +++ b/data/local/.gitignore @@ -0,0 +1,5 @@ +contact-info.php +favicon.png +logo.svg +header.inc.php +style.css diff --git a/data/local/examples/.gitignore b/data/local/examples/.gitignore new file mode 100644 index 000000000..1aaf04e37 --- /dev/null +++ b/data/local/examples/.gitignore @@ -0,0 +1,3 @@ +!*.php +!*.svg +!*.png diff --git a/data/local/examples/contact-info.php b/data/local/examples/contact-info.php new file mode 100644 index 000000000..dfac270b3 --- /dev/null +++ b/data/local/examples/contact-info.php @@ -0,0 +1,4 @@ +<address> + <strong>John Doe</strong><br> + <a href="mailto:#">john.doe@example.com</a> +</address> diff --git a/data/local/examples/favicon.png b/data/local/examples/favicon.png new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/data/local/examples/favicon.png diff --git a/data/local/examples/header.inc.php b/data/local/examples/header.inc.php new file mode 100644 index 000000000..d61d30af7 --- /dev/null +++ b/data/local/examples/header.inc.php @@ -0,0 +1,4 @@ +<!-- +This header will be included (kind of) right after the <body> tag. +Use it to prepend your own site's navigation if needed. +--> diff --git a/data/local/examples/logo.svg b/data/local/examples/logo.svg new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/data/local/examples/logo.svg 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 + */ |