JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
Create blank home page by default
authorJason Woofenden <jason@jasonwoof.com>
Fri, 26 Sep 2014 00:48:14 +0000 (20:48 -0400)
committerJason Woofenden <jason@jasonwoof.com>
Fri, 26 Sep 2014 00:48:14 +0000 (20:48 -0400)
That way the site doesn't give a 404.

admin_pages.sql

index e82ed35..c3c5adf 100644 (file)
@@ -9,3 +9,4 @@ create table cms_pages (
     description text not null default "",
     keywords text not null default ""
 );
+insert into cms_pages (filename,title,content) values ('index', 'Home', 'Under Construction');