|
Revision 678, 0.8 KB
(checked in by michiel, 14 months ago)
|
|
allow an index-alt.php to overwrite the default mvblog index page stuff.
This makes it easier to keep mvblog up-to-date with svn and not missing any updates
while running a totally custom index page.
Done for Nieke so she can redo the table etc.
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | /* |
|---|
| 3 | * MvBlog -- An open source no-nonsense blogtool |
|---|
| 4 | * |
|---|
| 5 | * Copyright (C) 2005-2007, Michiel van Baak |
|---|
| 6 | * Logo design (C) 2005-2007, Sofie van Tendeloo |
|---|
| 7 | * |
|---|
| 8 | * Michiel van Baak <mvanbaak@users.sourceforge.net> |
|---|
| 9 | * Sofie van Tendeloo <eldridge@users.sourceforge.net> |
|---|
| 10 | * |
|---|
| 11 | * See http://dev.mvblog.org for more information on MvBlog. |
|---|
| 12 | * That page also provides Bugtrackers, Filereleases etc. |
|---|
| 13 | * |
|---|
| 14 | * This program is free software, distributed under the terms of |
|---|
| 15 | * the GNU General Public License Version 2. See the LICENSE file |
|---|
| 16 | * at the top of the source tree. |
|---|
| 17 | */ |
|---|
| 18 | |
|---|
| 19 | /** |
|---|
| 20 | * This is the alternative index file. |
|---|
| 21 | * Feel free to do whatever you want here. |
|---|
| 22 | * The html untill(including) the <body> tag is written. |
|---|
| 23 | * The </body> and </html> will be written after this page. |
|---|
| 24 | * $mvblog variable is object of type Class MvBlog |
|---|
| 25 | */ |
|---|
| 26 | ?> |
|---|