From: Geoffrey T. D. <da...@us...> - 2001-12-11 22:41:42
|
Update of /cvsroot/phpwiki/phpwiki/templates In directory usw-pr-cvs1:/tmp/cvs-serv9145/templates Modified Files: browse.html Log Message: Name the wiki (SF task #34142). New config define: WIKI_NAME, which is used to generate a KEYWORDS meta tag, and also for the channel title in RSS output. Index: browse.html =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/templates/browse.html,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -r1.24 -r1.25 *** browse.html 2001/12/10 20:53:40 1.24 --- browse.html 2001/12/11 22:41:40 1.25 *************** *** 8,11 **** --- 8,15 ---- ${RCS_IDS} --> + <meta name="keywords" content="${SPLIT_PAGE}, ${WIKI_NAME}" /> + <?php if (!empty($PAGE_DESCRIPTION)) { ?> + <meta name="description" content="${PAGE_DESCRIPTION}" /> + <?php } ?> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <!-- <meta name="robots" content="index,follow" /> --> *************** *** 20,24 **** href="${BROWSE}HomePage" ><img src="${LOGO}" ! border="0" alt="[phpwiki]" align="right" width="50" height="50" /></a></div> <h1> --- 24,28 ---- href="${BROWSE}HomePage" ><img src="${LOGO}" ! border="0" alt="${WIKI_NAME}" align="right" width="50" height="50" /></a></div> <h1> |