writefreely/pages
Matt Baer bdc4f270f8 Support editing About and Privacy pages from Admin panel
This allows admin to edit these pages from the web, using Markdown. It
also dynamically loads information on those pages now, and makes loading
`pages` templates a little easier to find in the code / more explicit.

It requires this new schema change:

CREATE TABLE IF NOT EXISTS `appcontent` (
  `id` varchar(36) NOT NULL,
  `content` mediumtext CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
  `updated` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

This closes T533
2018-11-18 21:58:50 -05:00
..
404-general.tmpl Add handler, page, template loading 2018-11-07 23:50:50 -05:00
404.tmpl Add handler, page, template loading 2018-11-07 23:50:50 -05:00
410.tmpl Add handler, page, template loading 2018-11-07 23:50:50 -05:00
500.tmpl Update copy on default pages 2018-11-09 14:37:31 -05:00
about.tmpl Support editing About and Privacy pages from Admin panel 2018-11-18 21:58:50 -05:00
blank.tmpl Add handler, page, template loading 2018-11-07 23:50:50 -05:00
landing.tmpl Show "closed registration" message on landing page 2018-11-09 19:55:07 -05:00
login.tmpl Fully support single-user mode 2018-11-09 22:10:46 -05:00
privacy.tmpl Support editing About and Privacy pages from Admin panel 2018-11-18 21:58:50 -05:00