[textpattern] r5479 committed - Change body id selector to class selector in front-side theme

3 views
Skip to first unread message

textp...@googlecode.com

unread,
May 17, 2013, 6:44:50 AM5/17/13
to txp...@googlegroups.com
Revision: 5479
Author: ph...@designhive.com
Date: Fri May 17 03:44:42 2013
Log: Change body id selector to class selector in front-side theme
http://code.google.com/p/textpattern/source/detail?r=5479

Modified:
/development/4.x/textpattern/setup/txpsql.php

=======================================
--- /development/4.x/textpattern/setup/txpsql.php Fri May 17 03:36:44 2013
+++ /development/4.x/textpattern/setup/txpsql.php Fri May 17 03:44:42 2013
@@ -218,7 +218,7 @@
$create_sql[] = "INSERT INTO `".PFX."txp_form`(`name`,`type`,`Form`)
VALUES('files', 'file', '<!-- set up a variables to check whether a file
also has a title, description, category associated with it...
-->\n<txp:variable name=\"file_download_title\"
value=\'<txp:file_download_name title=\"1\" />\' />\n<txp:variable
name=\"file_download_description\" value=\'<txp:file_download_description
/>\' />\n<txp:variable name=\"file_download_category\"
value=\'<txp:file_download_category />\' />\n\n<div itemscope
itemtype=\"http://schema.org/userDownloads\">\n\n <!-- ...if exists, use
the file title, otherwise use file name -->\n <txp:if_variable
name=\"file_download_title\" value=\"\">\n <strong itemprop=\"name\"><a
href=\"<txp:file_download_link />\" title=\"<txp:file_download_name />\"
itemprop=\"url\"><txp:file_download_name /></a></strong><br>\n <txp:else
/>\n <strong itemprop=\"name\"><a href=\"<txp:file_download_link />\"
title=\"<txp:file_download_name title=\'1\' />\"
itemprop=\"url\"><txp:file_download_name title=\"1\" /></a></strong><br>\n
</txp:if_variable>\n\n <!-- ...if exists, use the file description,
otherwise omit that line -->\n <txp:if_variable
name=\"file_download_description\" value=\"\">\n <txp:else />\n <span
itemprop=\"description\"><txp:file_download_description /></span><br>\n
</txp:if_variable>\n\n <span class=\"footnote\">\n\n <!-- ...if exists,
use the file category, otherwise omit that line -->\n <txp:if_variable
name=\"file_download_category\" value=\"\">\n <txp:else />\n
<strong><txp:text item=\"category\" /></strong> <txp:file_download_category
/> &#124; \n </txp:if_variable>\n\n <strong><txp:text item=\"author\"
/></strong> <txp:file_download_author link=\"1\" /> &#124; \n
<strong><txp:text item=\"file_size\" /></strong> <txp:file_download_size />
&#124; \n <strong><txp:text item=\"last_modified\" /></strong> <span
itemprop=\"dateModified\"><txp:file_download_created /></span> &#124; \n
<strong><txp:text item=\"download_count\" /></strong> <span
itemprop=\"interactionCount\"><txp:file_download_downloads /></span>\n\n
</span>\n\n</div>')";
$create_sql[] = "INSERT INTO `".PFX."txp_form`(`name`,`type`,`Form`)
VALUES('images', 'misc', '<!-- set up a variable to check whether a image
also has a caption associated with it... -->\n<txp:variable
name=\"caption\" value=\'<txp:image_info type=\"caption\" />\'
/>\n\n<!-- ...now use that image caption and wrap img inside a figure with
figcaption tags, otherwise just use a plain img tag -->\n<txp:if_variable
name=\"caption\" value=\"\">\n\n<!-- image - overriding the width and
height to let the image scale to fit parent container -->\n <p
itemprop=\"image\"><txp:image width=\"0\" height=\"0\" /></p>\n\n<txp:else
/>\n\n <figure itemscope
itemtype=\"http://schema.org/ImageObject\">\n\n<!-- image - overriding the
width and height to let the image scale to fit parent container -->\n
<span itemprop=\"image\"><txp:image width=\"0\" height=\"0\"
/></span>\n\n<!-- you do not need to specify the attribute type=\"caption\"
as that is the default setting for <txp:image_info /> tag -->\n
<figcaption itemprop=\"caption\"><txp:image_info type=\"caption\"
/></figcaption>\n\n </figure>\n\n</txp:if_variable>')";
$create_sql[] = "INSERT INTO `".PFX."txp_form`(`name`,`type`,`Form`)
VALUES('plainlinks', 'link', '<!-- This is being used as an external links
form, therefore rel is set to \'external\' -->\n<txp:linkdesctitle
rel=\"external\" />')";
-$create_sql[] = "INSERT INTO `".PFX."txp_form`(`name`,`type`,`Form`)
VALUES('popup_comments', 'comment', '<!DOCTYPE html>\n<html
lang=\"<txp:lang />\">\n\n<head>\n <meta charset=\"utf-8\">\n\n
<title><txp:page_title /></title>\n <meta name=\"generator\"
content=\"Textpattern CMS\">\n <meta name=\"robots\" content=\"noindex,
follow, noodp, noydir\">\n\n<!-- mobile viewport optimised, more info:
http://h5bp.com/viewport -->\n <meta name=\"viewport\"
content=\"width=device-width, initial-scale=1\">\n\n<!-- css -->\n <!--
Google font API (remove this if you intend to use the theme in a project
without internet access) -->\n <link rel=\"stylesheet\"
href=\"http://fonts.googleapis.com/css?family=PT+Serif:400,400italic,700,700italic|
Cousine\">\n\n <txp:css format=\"link\" media=\"\" />\n <!-- or you can
use (faster) external CSS files eg. <link rel=\"stylesheet\"
href=\"<txp:site_url />css/default.css\"> -->\n\n<!-- HTML5/Media Queries
support for IE < 9 (you can remove this section and the corresponding
\'js\' directory files if you don\'t intend to support IE < 9) -->\n
<!--[if lt IE 9]>\n <script src=\"<txp:site_url
/>js/html5shiv.js\"></script>\n <script src=\"<txp:site_url
/>js/css3-mediaqueries.js\"></script>\n <![endif]-->\n\n</head>\n\n<body
id=\"popup-page\">\n\n <div class=\"wrapper\">\n <div
class=\"container\">\n\n <!-- this form is only used if you set
\'Comments mode\' to \'popup\' format in preferences -->\n
<txp:popup_comments />\n\n </div> <!-- /.container -->\n </div> <!--
/.wrapper -->\n\n</body>\n</html>')";
+$create_sql[] = "INSERT INTO `".PFX."txp_form`(`name`,`type`,`Form`)
VALUES('popup_comments', 'comment', '<!DOCTYPE html>\n<html
lang=\"<txp:lang />\">\n\n<head>\n <meta charset=\"utf-8\">\n\n
<title><txp:page_title /></title>\n <meta name=\"generator\"
content=\"Textpattern CMS\">\n <meta name=\"robots\" content=\"noindex,
follow, noodp, noydir\">\n\n<!-- mobile viewport optimised, more info:
http://h5bp.com/viewport -->\n <meta name=\"viewport\"
content=\"width=device-width, initial-scale=1\">\n\n<!-- css -->\n <!--
Google font API (remove this if you intend to use the theme in a project
without internet access) -->\n <link rel=\"stylesheet\"
href=\"http://fonts.googleapis.com/css?family=PT+Serif:400,400italic,700,700italic|
Cousine\">\n\n <txp:css format=\"link\" media=\"\" />\n <!-- or you can
use (faster) external CSS files eg. <link rel=\"stylesheet\"
href=\"<txp:site_url />css/default.css\"> -->\n\n<!-- HTML5/Media Queries
support for IE < 9 (you can remove this section and the corresponding
\'js\' directory files if you don\'t intend to support IE < 9) -->\n
<!--[if lt IE 9]>\n <script src=\"<txp:site_url
/>js/html5shiv.js\"></script>\n <script src=\"<txp:site_url
/>js/css3-mediaqueries.js\"></script>\n <![endif]-->\n\n</head>\n\n<body
class=\"popup-page\">\n\n <div class=\"wrapper\">\n <div
class=\"container\">\n\n <!-- this form is only used if you set
\'Comments mode\' to \'popup\' format in preferences -->\n
<txp:popup_comments />\n\n </div> <!-- /.container -->\n </div> <!--
/.wrapper -->\n\n</body>\n</html>')";
$create_sql[] = "INSERT INTO `".PFX."txp_form`(`name`,`type`,`Form`)
VALUES('search_input', 'misc', '<form role=\"search\" method=\"get\"
action=\"<txp:site_url />\">\n <h4><label for=\"search-textbox\"><txp:text
item=\"search\" /></label></h4>\n <p><input id=\"search-textbox\"
type=\"search\" name=\"q\"<txp:if_search> value=\"<txp:search_term
/>\"</txp:if_search>><input type=\"submit\" value=\"<txp:text item=\'go\'
/>\"></p>\n</form>')";
$create_sql[] = "INSERT INTO `".PFX."txp_form`(`name`,`type`,`Form`)
VALUES('search_results', 'article', '<!-- count how many results return
-->\n<txp:article limit=\"10\" pgonly=\"1\"
/>\n\n<txp:if_search_results>\n\n<!-- if search result count greater than
200 then display excessive results message, otherwise show search result
count -->\n <txp:if_search_results max=\"200\">\n
<h3><txp:search_result_count /> <txp:text item=\"matching_search_request\"
/> &#8216;<txp:search_term />&#8217;&#8230;</h3>\n <txp:else />\n
<h3><txp:text item=\"too_common_search_term\" /> &#8216;<txp:search_term
/>&#8217;</h3>\n </txp:if_search_results>\n\n<!-- if no search results,
then display no search results message -->\n<txp:else />\n <h3><txp:text
item=\"no_search_matches\" /></h3>\n\n</txp:if_search_results>\n\n<!--
display resulting articles (10 per page) -->\n<txp:article
limit=\"10\">\n\n <txp:if_first_article><ul
class=\"article-list\"></txp:if_first_article>\n <li role=\"article\"
itemscope itemtype=\"http://schema.org/Article\">\n <h4
itemprop=\"name\"><a href=\"<txp:permlink />\" itemprop=\"url\"><txp:title
/></a></h4>\n\n<!-- if the article has an excerpt, display that, otherwise
show highlighted keywords in context of article -->\n
<txp:if_excerpt>\n <div itemprop=\"description\">\n
<txp:excerpt />\n </div>\n <txp:else />\n
<p><txp:search_result_excerpt /></p>\n </txp:if_excerpt>\n\n <p
class=\"footnote\"><txp:text item=\"posted\" /> <time
datetime=\"<txp:posted format=\'iso8601\' />\"
itemprop=\"datePublished\"><txp:posted /></time>, <txp:text item=\"author\"
/> <span itemprop=\"author\"><txp:author link=\"1\" this_section=\"1\"
/></span></p>\n </li>\n
<txp:if_last_article></ul></txp:if_last_article>\n\n</txp:article>\n\n<!--
check if there are further results and provide pagination links or disabled
buttons depending on the result,\n this method is more flexibile than
using simple txp:older/txp:newer tags -->\n<txp:if_search_results
min=\"11\">\n\n <txp:variable name=\"prev\" value=\'<txp:older />\' />\n
<txp:variable name=\"next\" value=\'<txp:newer />\' />\n\n <p
class=\"paginator\">\n\n <txp:if_variable name=\"next\" value=\"\">\n
<txp:else />\n <a class=\"paginator-prev\" href=\"<txp:newer />\"
title=\"&#8592; <txp:text item=\"prev\" />\" rel=\"prev\">&#8592; <txp:text
item=\"prev\" /></a>\n </txp:if_variable>\n\n <txp:if_variable
name=\"prev\" value=\"\">\n <txp:else />\n <a
class=\"paginator-next\" href=\"<txp:older />\" title=\"<txp:text
item=\"next\" /> &#8594;\" rel=\"next\"><txp:text item=\"next\" />
&#8594;</a>\n </txp:if_variable>\n\n
</p>\n\n</txp:if_search_results>')";
// /sql:txp_form
@@ -289,9 +289,9 @@
) $tabletype PACK_KEYS=1";

// sql:txp_page
-$create_sql[] = "INSERT INTO `".PFX."txp_page`(`name`,`user_html`)
VALUES('archive', '<!DOCTYPE html>\n<html lang=\"<txp:lang
/>\">\n\n<head>\n <meta charset=\"utf-8\">\n\n <title><txp:page_title
/></title>\n <meta name=\"generator\" content=\"Textpattern CMS\">\n
<meta name=\"robots\" content=\"index, follow, noodp, noydir\">\n\n<!--
mobile viewport optimised, more info: http://h5bp.com/viewport -->\n <meta
name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\n
<txp:if_individual_article>\n<!-- add meta author for individual articles
-->\n <txp:meta_author title=\"1\" />\n
</txp:if_individual_article>\n\n<!-- content feeds -->\n <txp:feed_link
flavor=\"atom\" format=\"link\" label=\"Atom\" />\n <txp:feed_link
flavor=\"rss\" format=\"link\" label=\"RSS\" />\n <txp:rsd />\n\n<!--
specify canonical, more info:
http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html
-->\n <txp:if_individual_article>\n <link rel=\"canonical\"
href=\"<txp:permlink />\">\n <txp:else />\n <link rel=\"canonical\"
href=\"<txp:section url=\'1\' />\">\n </txp:if_individual_article>\n\n<!--
css -->\n <!-- Google font API (remove this if you intend to use the theme
in a project without internet access) -->\n <link rel=\"stylesheet\"
href=\"http://fonts.googleapis.com/css?family=PT+Serif:400,400italic,700,700italic|
Cousine\">\n\n <txp:css format=\"link\" media=\"\" />\n <!-- or you can
use (faster) external CSS files eg. <link rel=\"stylesheet\"
href=\"<txp:site_url />css/default.css\"> -->\n\n<!-- HTML5/Media Queries
support for IE < 9 (you can remove this section and the corresponding
\'js\' directory files if you don\'t intend to support IE < 9) -->\n
<!--[if lt IE 9]>\n <script src=\"<txp:site_url
/>js/html5shiv.js\"></script>\n <script src=\"<txp:site_url
/>js/css3-mediaqueries.js\"></script>\n <![endif]-->\n\n</head>\n\n<body
id=\"<txp:section />-page\">\n\n<!-- header -->\n <header
role=\"banner\">\n <h1><txp:link_to_home><txp:site_name
/></txp:link_to_home></h1>\n <h3><txp:site_slogan /></h3>\n
</header>\n\n<!-- navigation -->\n <nav role=\"navigation\"
class=\"site-navigation\" aria-label=\"<txp:text item=\'navigation\'
/>\">\n <txp:section_list default_title=\'<txp:text item=\"home\" />\'
include_default=\"1\" wraptag=\"ul\" break=\"\">\n <li<txp:if_section
name=\'<txp:section />\'> class=\"active\"</txp:if_section>>\n
<txp:section title=\"1\" link=\"1\" />\n </li>\n
</txp:section_list>\n </nav>\n\n <div class=\"wrapper\">\n <div
class=\"container\">\n\n<!-- left (main) column -->\n <main
role=\"main\" aria-label=\"<txp:text item=\'main_content\' />\">\n\n
<txp:if_article_list>\n <section role=\"region\" itemscope
itemtype=\"http://schema.org/CollectionPage\">\n <h1
itemprop=\"name\"><txp:section title=\"1\" /></h1>\n <div
itemprop=\"mainContentOfPage\">\n\n <txp:article
listform=\"article_listing\" limit=\"5\" />\n <!-- or if you
want to list all articles from all sections instead, then replace
txp:article with txp:article_custom -->\n\n </div>\n
</section>\n <txp:else />\n <txp:article />\n
</txp:if_article_list>\n\n <!-- add pagination links to foot of
article/article listings if there are more articles available,\n
this method is more flexibile than using simple
txp:link_to_prev/txp:link_to_next or txp:older/txp:newer tags -->\n
<txp:if_individual_article>\n\n <txp:variable name=\"more\"
value=\'<txp:link_to_prev /><txp:link_to_next />\' />\n
<txp:variable name=\"prev\" value=\'<txp:link_to_prev />\' />\n
<txp:variable name=\"next\" value=\'<txp:link_to_next />\' />\n\n
<txp:if_variable name=\"more\" value=\"\">\n <txp:else
/>\n <p class=\"paginator\">\n\n <txp:if_variable
name=\"prev\" value=\"\">\n <txp:else />\n <a
class=\"paginator-prev\" href=\"<txp:link_to_prev />\"
title=\"<txp:prev_title />\" rel=\"prev\">&#8592; <txp:text item=\"older\"
/></a>\n </txp:if_variable>\n\n <txp:if_variable
name=\"next\" value=\"\">\n <txp:else />\n <a
class=\"paginator-next\" href=\"<txp:link_to_next />\"
title=\"<txp:next_title />\" rel=\"next\"><txp:text item=\"newer\" />
&#8594;</a>\n </txp:if_variable>\n\n </p>\n
</txp:if_variable>\n\n <txp:else />\n\n <txp:variable
name=\"more\" value=\'<txp:older /><txp:newer />\' />\n
<txp:variable name=\"prev\" value=\'<txp:older />\' />\n
<txp:variable name=\"next\" value=\'<txp:newer />\' />\n\n
<txp:if_variable name=\"more\" value=\"\">\n <txp:else
/>\n <p class=\"paginator\">\n\n <txp:if_variable
name=\"prev\" value=\"\">\n <txp:else />\n <a
class=\"paginator-prev\" href=\"<txp:older />\" title=\"<txp:text
item=\'older\' />\" rel=\"prev\">&#8592; <txp:text item=\"older\"
/></a>\n </txp:if_variable>\n\n <txp:if_variable
name=\"next\" value=\"\">\n <txp:else />\n <a
class=\"paginator-next\" href=\"<txp:newer />\" title=\"<txp:text
item=\'newer\' />\" rel=\"next\"><txp:text item=\"newer\" />
&#8594;</a>\n </txp:if_variable>\n\n
</p>\n </txp:if_variable>\n\n
</txp:if_individual_article>\n\n </main>\n\n <!-- right
(complementary) column -->\n <div role=\"complementary\">\n
<txp:search_input /> <!-- links by default to form:
\'search_input.misc.txp\' unless you specify a different form -->\n
\n <!-- Feed links, default flavor is rss, so we don\'t need to
specify a flavor on the first feed_link -->\n <p><txp:feed_link
label=\"RSS\" class=\"feed-rss\" /> / <txp:feed_link flavor=\"atom\"
label=\"Atom\" class=\"feed-atom\" /></p>\n\n <h4><txp:text
item=\"external_links\" /></h4>\n <txp:linklist wraptag=\"ul\"
break=\"li\" limit=\"10\" /> <!-- links by default to form:
\'plainlinks.link.txp\' unless you specify a different form -->\n
</div> <!-- /complementary -->\n\n </div> <!-- /.container -->\n </div>
<!-- /.wrapper -->\n\n<!-- footer -->\n <footer role=\"contentinfo\">\n
<p><small><txp:text item=\"published_with\" /> <a
href=\"http://textpattern.com\" rel=\"external\" title=\"<txp:text
item=\'go_txp_com\' />\">Textpattern CMS</a>.</small></p>\n
</footer>\n\n<!-- JavaScript at the bottom for fast page loading, more
info: http://developer.yahoo.com/performance/rules.html#js_bottom -->\n\n
<!-- add your own JavaScript here -->\n\n</body>\n</html>')";
-$create_sql[] = "INSERT INTO `".PFX."txp_page`(`name`,`user_html`)
VALUES('default', '<!DOCTYPE html>\n<html lang=\"<txp:lang
/>\">\n\n<head>\n <meta charset=\"utf-8\">\n\n <title><txp:page_title
/></title>\n <meta name=\"generator\" content=\"Textpattern CMS\">\n
<txp:if_search>\n <meta name=\"robots\" content=\"none\">\n <txp:else
/>\n <txp:if_category>\n <meta name=\"robots\" content=\"noindex,
follow, noodp, noydir\">\n <txp:else />\n <txp:if_author>\n <meta
name=\"robots\" content=\"noindex, follow, noodp, noydir\">\n <txp:else
/>\n <meta name=\"robots\" content=\"index, follow, noodp, noydir\">\n
</txp:if_author>\n </txp:if_category>\n </txp:if_search>\n\n<!-- mobile
viewport optimised, more info: http://h5bp.com/viewport -->\n <meta
name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\n<!--
content feeds -->\n <txp:feed_link flavor=\"atom\" format=\"link\"
label=\"Atom\" />\n <txp:feed_link flavor=\"rss\" format=\"link\"
label=\"RSS\" />\n <txp:rsd />\n\n<!-- specify canonical, more info:
http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html
-->\n <txp:if_section name=\"\">\n <link rel=\"canonical\"
href=\"<txp:site_url />\">\n <txp:else />\n
<txp:if_individual_article>\n <link rel=\"canonical\"
href=\"<txp:permlink />\">\n <txp:else />\n <link rel=\"canonical\"
href=\"<txp:section url=\'1\' />\">\n </txp:if_individual_article>\n
</txp:if_section>\n\n<!-- css -->\n <!-- Google font API (remove this if
you intend to use the theme in a project without internet access) -->\n
<link rel=\"stylesheet\"
href=\"http://fonts.googleapis.com/css?family=PT+Serif:400,400italic,700,700italic|
Cousine\">\n\n <txp:css format=\"link\" media=\"\" />\n <!-- or you can
use (faster) external CSS files eg. <link rel=\"stylesheet\"
href=\"<txp:site_url />css/default.css\"> -->\n\n<!-- HTML5/Media Queries
support for IE < 9 (you can remove this section and the corresponding
\'js\' directory files if you don\'t intend to support IE < 9) -->\n
<!--[if lt IE 9]>\n <script src=\"<txp:site_url
/>js/html5shiv.js\"></script>\n <script src=\"<txp:site_url
/>js/css3-mediaqueries.js\"></script>\n <![endif]-->\n\n</head>\n\n<body
id=\"<txp:if_section name=\"\"><txp:if_search>search<txp:else
/>front</txp:if_search><txp:else /><txp:section
/></txp:if_section>-page\">\n\n<!-- header -->\n <header
role=\"banner\">\n <h1><txp:link_to_home><txp:site_name
/></txp:link_to_home></h1>\n <h3><txp:site_slogan /></h3>\n
</header>\n\n<!-- navigation -->\n <nav role=\"navigation\"
class=\"site-navigation\" aria-label=\"<txp:text item=\'navigation\'
/>\">\n <txp:section_list default_title=\'<txp:text item=\"home\" />\'
include_default=\"1\" wraptag=\"ul\" break=\"\">\n <li<txp:if_section
name=\'<txp:section />\'><txp:if_search><txp:else
/><txp:if_category><txp:else /><txp:if_author><txp:else />
class=\"active\"</txp:if_author></txp:if_category></txp:if_search></txp:if_section>>\n
<txp:section title=\"1\" link=\"1\" />\n </li>\n
</txp:section_list>\n </nav>\n\n <div class=\"wrapper\">\n <div
class=\"container\">\n\n<!-- left (main) column -->\n <main
role=\"main\" aria-label=\"<txp:text item=\'main_content\' />\">\n\n
<!-- is this result result page? also omits the pagination links below
(uses pagination format within search_results.article.txp instead)
-->\n <txp:if_search>\n\n <section role=\"region\" itemscope
itemtype=\"http://schema.org/SearchResultsPage\">\n <h1
itemprop=\"name\"><txp:text item=\"search_results\" /></h1>\n <div
itemprop=\"mainContentOfPage\">\n <txp:output_form
form=\"search_results\" />\n </div>\n </section>\n\n
<txp:else />\n\n <!-- else is this an article category list?
-->\n <txp:if_category>\n\n <section role=\"region\" itemscope
itemtype=\"http://schema.org/CollectionPage\">\n <h1
itemprop=\"name\"><txp:text item=\"category\" /> <txp:category title=\"1\"
/></h1>\n <div itemprop=\"mainContentOfPage\">\n
<txp:article form=\"article_listing\" limit=\"5\" />\n
</div>\n </section>\n\n <txp:else />\n\n <!-- else is
this an article author list? -->\n <txp:if_author>\n\n
<section role=\"region\" itemscope
itemtype=\"http://schema.org/CollectionPage\">\n <h1
itemprop=\"name\"><txp:text item=\"author\" /> <txp:author
/></h1>\n <div
itemprop=\"mainContentOfPage\">\n <txp:article
form=\"article_listing\" limit=\"5\" />\n </div>\n
</section>\n\n <txp:else />\n\n <!-- else display
articles normally -->\n <txp:article limit=\"5\" /> <!-- links
by default to form: \'default.article.txp\' unless you specify a different
form -->\n\n </txp:if_author>\n
</txp:if_category>\n\n <!-- add pagination links to foot of
article/article listings/category listings if there are more articles
available,\n this method is more flexibile than using simple
txp:link_to_prev/txp:link_to_next or txp:older/txp:newer tags -->\n
<txp:variable name=\"more\" value=\'<txp:older /><txp:newer />\'
/>\n <txp:variable name=\"prev\" value=\'<txp:older />\' />\n
<txp:variable name=\"next\" value=\'<txp:newer />\' />\n\n
<txp:if_variable name=\"more\" value=\"\">\n <txp:else />\n
<p class=\"paginator\">\n\n <txp:if_variable name=\"prev\"
value=\"\">\n <txp:else />\n <a
class=\"paginator-prev\" href=\"<txp:older />\" title=\"<txp:text
item=\'older\' />\" rel=\"prev\">&#8592; <txp:text item=\"older\"
/></a>\n </txp:if_variable>\n\n <txp:if_variable
name=\"next\" value=\"\">\n <txp:else />\n <a
class=\"paginator-next\" href=\"<txp:newer />\" title=\"<txp:text
item=\'newer\' />\" rel=\"next\"><txp:text item=\"newer\" />
&#8594;</a>\n </txp:if_variable>\n\n </p>\n
</txp:if_variable>\n\n </txp:if_search>\n\n </main>\n\n<!-- right
(complementary) column -->\n <div role=\"complementary\">\n
<txp:search_input /> <!-- links by default to form:
\'search_input.misc.txp\' unless you specify a different form
-->\n\n <!-- Feed links, default flavor is rss, so we don\'t need to
specify a flavor on the first feed_link -->\n <p><txp:feed_link
label=\"RSS\" class=\"feed-rss\" /> / <txp:feed_link flavor=\"atom\"
label=\"Atom\" class=\"feed-atom\" /></p>\n\n <h4><txp:text
item=\"external_links\" /></h4>\n <txp:linklist wraptag=\"ul\"
break=\"li\" limit=\"10\" /> <!-- links by default to form:
\'plainlinks.link.txp\' unless you specify a different form -->\n
</div> <!-- /complementary -->\n\n </div> <!-- /.container -->\n </div>
<!-- /.wrapper -->\n\n<!-- footer -->\n <footer role=\"contentinfo\">\n
<p><small><txp:text item=\"published_with\" /> <a
href=\"http://textpattern.com\" rel=\"external\" title=\"<txp:text
item=\'go_txp_com\' />\">Textpattern CMS</a>.</small></p>\n
</footer>\n\n<!-- JavaScript at the bottom for fast page loading, more
info: http://developer.yahoo.com/performance/rules.html#js_bottom -->\n\n
<!-- add your own JavaScript here -->\n\n</body>\n</html>')";
-$create_sql[] = "INSERT INTO `".PFX."txp_page`(`name`,`user_html`)
VALUES('error_default', '<!DOCTYPE html>\n<html lang=\"<txp:lang
/>\">\n\n<head>\n <meta charset=\"utf-8\">\n\n <title><txp:error_status
/></title>\n <meta name=\"generator\" content=\"Textpattern CMS\">\n
<meta name=\"robots\" content=\"none\">\n\n<!-- mobile viewport optimised,
more info: http://h5bp.com/viewport -->\n <meta name=\"viewport\"
content=\"width=device-width, initial-scale=1\">\n\n<!-- content feeds
-->\n <txp:feed_link flavor=\"atom\" format=\"link\" label=\"Atom\" />\n
<txp:feed_link flavor=\"rss\" format=\"link\" label=\"RSS\" />\n <txp:rsd
/>\n\n<!-- css -->\n <!-- Google font API (remove this if you intend to
use the theme in a project without internet access) -->\n <link
rel=\"stylesheet\"
href=\"http://fonts.googleapis.com/css?family=PT+Serif:400,400italic,700,700italic|
Cousine\">\n\n <txp:css format=\"link\" media=\"\" />\n <!-- or you can
use (faster) external CSS files eg. <link rel=\"stylesheet\"
href=\"<txp:site_url />css/default.css\"> -->\n\n<!-- HTML5/Media Queries
support for IE < 9 (you can remove this section and the corresponding
\'js\' directory files if you don\'t intend to support IE < 9) -->\n
<!--[if lt IE 9]>\n <script src=\"<txp:site_url
/>js/html5shiv.js\"></script>\n <script src=\"<txp:site_url
/>js/css3-mediaqueries.js\"></script>\n <![endif]-->\n\n</head>\n\n<body
id=\"error-page\">\n\n<!-- header -->\n <header role=\"banner\">\n
<h1><txp:link_to_home><txp:site_name /></txp:link_to_home></h1>\n
<h3><txp:site_slogan /></h3>\n </header>\n\n<!-- navigation -->\n <nav
role=\"navigation\" class=\"site-navigation\" aria-label=\"<txp:text
item=\'navigation\' />\">\n <txp:section_list default_title=\'<txp:text
item=\"home\" />\' include_default=\"1\" wraptag=\"ul\"
break=\"li\">\n <txp:section title=\"1\" link=\"1\" />\n
</txp:section_list>\n </nav>\n\n <div class=\"wrapper\">\n <div
class=\"container\">\n\n<!-- left (main) column -->\n <main
role=\"main\" aria-label=\"<txp:text item=\'main_content\' />\">\n
<h1 class=\"error-status\"><txp:error_status /></h1>\n <p
class=\"error-msg\"><txp:error_message /></p>\n </main>\n\n<!-- right
(complementary) column -->\n <div role=\"complementary\">\n
<txp:search_input /> <!-- links by default to form:
\'search_input.misc.txp\' unless you specify a different form
-->\n\n <!-- Feed links, default flavor is rss, so we don\'t need to
specify a flavor on the first feed_link -->\n <p><txp:feed_link
label=\"RSS\" class=\"feed-rss\" /> / <txp:feed_link flavor=\"atom\"
label=\"Atom\" class=\"feed-atom\" /></p>\n\n <h4><txp:text
item=\"external_links\" /></h4>\n <txp:linklist wraptag=\"ul\"
break=\"li\" limit=\"10\" /> <!-- links by default to form:
\'plainlinks.link.txp\' unless you specify a different form -->\n
</div> <!-- /complementary -->\n\n </div> <!-- /.container -->\n </div>
<!-- /.wrapper -->\n\n<!-- footer -->\n <footer role=\"contentinfo\">\n
<p><small><txp:text item=\"published_with\" /> <a
href=\"http://textpattern.com\" rel=\"external\" title=\"<txp:text
item=\'go_txp_com\' />\">Textpattern CMS</a>.</small></p>\n
</footer>\n\n<!-- JavaScript at the bottom for fast page loading, more
info: http://developer.yahoo.com/performance/rules.html#js_bottom -->\n\n
<!-- add your own JavaScript here -->\n\n</body>\n</html>')";
+$create_sql[] = "INSERT INTO `".PFX."txp_page`(`name`,`user_html`)
VALUES('archive', '<!DOCTYPE html>\n<html lang=\"<txp:lang
/>\">\n\n<head>\n <meta charset=\"utf-8\">\n\n <title><txp:page_title
/></title>\n <meta name=\"generator\" content=\"Textpattern CMS\">\n
<meta name=\"robots\" content=\"index, follow, noodp, noydir\">\n\n<!--
mobile viewport optimised, more info: http://h5bp.com/viewport -->\n <meta
name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\n
<txp:if_individual_article>\n<!-- add meta author for individual articles
-->\n <txp:meta_author title=\"1\" />\n
</txp:if_individual_article>\n\n<!-- content feeds -->\n <txp:feed_link
flavor=\"atom\" format=\"link\" label=\"Atom\" />\n <txp:feed_link
flavor=\"rss\" format=\"link\" label=\"RSS\" />\n <txp:rsd />\n\n<!--
specify canonical, more info:
http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html
-->\n <txp:if_individual_article>\n <link rel=\"canonical\"
href=\"<txp:permlink />\">\n <txp:else />\n <link rel=\"canonical\"
href=\"<txp:section url=\'1\' />\">\n </txp:if_individual_article>\n\n<!--
css -->\n <!-- Google font API (remove this if you intend to use the theme
in a project without internet access) -->\n <link rel=\"stylesheet\"
href=\"http://fonts.googleapis.com/css?family=PT+Serif:400,400italic,700,700italic|
Cousine\">\n\n <txp:css format=\"link\" media=\"\" />\n <!-- or you can
use (faster) external CSS files eg. <link rel=\"stylesheet\"
href=\"<txp:site_url />css/default.css\"> -->\n\n<!-- HTML5/Media Queries
support for IE < 9 (you can remove this section and the corresponding
\'js\' directory files if you don\'t intend to support IE < 9) -->\n
<!--[if lt IE 9]>\n <script src=\"<txp:site_url
/>js/html5shiv.js\"></script>\n <script src=\"<txp:site_url
/>js/css3-mediaqueries.js\"></script>\n <![endif]-->\n\n</head>\n\n<body
class=\"<txp:section />-page\">\n\n<!-- header -->\n <header
role=\"banner\">\n <h1><txp:link_to_home><txp:site_name
/></txp:link_to_home></h1>\n <h3><txp:site_slogan /></h3>\n
</header>\n\n<!-- navigation -->\n <nav role=\"navigation\"
class=\"site-navigation\" aria-label=\"<txp:text item=\'navigation\'
/>\">\n <txp:section_list default_title=\'<txp:text item=\"home\" />\'
include_default=\"1\" wraptag=\"ul\" break=\"\">\n <li<txp:if_section
name=\'<txp:section />\'> class=\"active\"</txp:if_section>>\n
<txp:section title=\"1\" link=\"1\" />\n </li>\n
</txp:section_list>\n </nav>\n\n <div class=\"wrapper\">\n <div
class=\"container\">\n\n<!-- left (main) column -->\n <main
role=\"main\" aria-label=\"<txp:text item=\'main_content\' />\">\n\n
<txp:if_article_list>\n <section role=\"region\" itemscope
itemtype=\"http://schema.org/CollectionPage\">\n <h1
itemprop=\"name\"><txp:section title=\"1\" /></h1>\n <div
itemprop=\"mainContentOfPage\">\n\n <txp:article
listform=\"article_listing\" limit=\"5\" />\n <!-- or if you
want to list all articles from all sections instead, then replace
txp:article with txp:article_custom -->\n\n </div>\n
</section>\n <txp:else />\n <txp:article />\n
</txp:if_article_list>\n\n <!-- add pagination links to foot of
article/article listings if there are more articles available,\n
this method is more flexibile than using simple
txp:link_to_prev/txp:link_to_next or txp:older/txp:newer tags -->\n
<txp:if_individual_article>\n\n <txp:variable name=\"more\"
value=\'<txp:link_to_prev /><txp:link_to_next />\' />\n
<txp:variable name=\"prev\" value=\'<txp:link_to_prev />\' />\n
<txp:variable name=\"next\" value=\'<txp:link_to_next />\' />\n\n
<txp:if_variable name=\"more\" value=\"\">\n <txp:else
/>\n <p class=\"paginator\">\n\n <txp:if_variable
name=\"prev\" value=\"\">\n <txp:else />\n <a
class=\"paginator-prev\" href=\"<txp:link_to_prev />\"
title=\"<txp:prev_title />\" rel=\"prev\">&#8592; <txp:text item=\"older\"
/></a>\n </txp:if_variable>\n\n <txp:if_variable
name=\"next\" value=\"\">\n <txp:else />\n <a
class=\"paginator-next\" href=\"<txp:link_to_next />\"
title=\"<txp:next_title />\" rel=\"next\"><txp:text item=\"newer\" />
&#8594;</a>\n </txp:if_variable>\n\n </p>\n
</txp:if_variable>\n\n <txp:else />\n\n <txp:variable
name=\"more\" value=\'<txp:older /><txp:newer />\' />\n
<txp:variable name=\"prev\" value=\'<txp:older />\' />\n
<txp:variable name=\"next\" value=\'<txp:newer />\' />\n\n
<txp:if_variable name=\"more\" value=\"\">\n <txp:else
/>\n <p class=\"paginator\">\n\n <txp:if_variable
name=\"prev\" value=\"\">\n <txp:else />\n <a
class=\"paginator-prev\" href=\"<txp:older />\" title=\"<txp:text
item=\'older\' />\" rel=\"prev\">&#8592; <txp:text item=\"older\"
/></a>\n </txp:if_variable>\n\n <txp:if_variable
name=\"next\" value=\"\">\n <txp:else />\n <a
class=\"paginator-next\" href=\"<txp:newer />\" title=\"<txp:text
item=\'newer\' />\" rel=\"next\"><txp:text item=\"newer\" />
&#8594;</a>\n </txp:if_variable>\n\n
</p>\n </txp:if_variable>\n\n
</txp:if_individual_article>\n\n </main>\n\n <!-- right
(complementary) column -->\n <div role=\"complementary\">\n
<txp:search_input /> <!-- links by default to form:
\'search_input.misc.txp\' unless you specify a different form -->\n
\n <!-- Feed links, default flavor is rss, so we don\'t need to
specify a flavor on the first feed_link -->\n <p><txp:feed_link
label=\"RSS\" class=\"feed-rss\" /> / <txp:feed_link flavor=\"atom\"
label=\"Atom\" class=\"feed-atom\" /></p>\n\n <h4><txp:text
item=\"external_links\" /></h4>\n <txp:linklist wraptag=\"ul\"
break=\"li\" limit=\"10\" /> <!-- links by default to form:
\'plainlinks.link.txp\' unless you specify a different form -->\n
</div> <!-- /complementary -->\n\n </div> <!-- /.container -->\n </div>
<!-- /.wrapper -->\n\n<!-- footer -->\n <footer role=\"contentinfo\">\n
<p><small><txp:text item=\"published_with\" /> <a
href=\"http://textpattern.com\" rel=\"external\" title=\"<txp:text
item=\'go_txp_com\' />\">Textpattern CMS</a>.</small></p>\n
</footer>\n\n<!-- JavaScript at the bottom for fast page loading, more
info: http://developer.yahoo.com/performance/rules.html#js_bottom -->\n\n
<!-- add your own JavaScript here -->\n\n</body>\n</html>')";
+$create_sql[] = "INSERT INTO `".PFX."txp_page`(`name`,`user_html`)
VALUES('default', '<!DOCTYPE html>\n<html lang=\"<txp:lang
/>\">\n\n<head>\n <meta charset=\"utf-8\">\n\n <title><txp:page_title
/></title>\n <meta name=\"generator\" content=\"Textpattern CMS\">\n
<txp:if_search>\n <meta name=\"robots\" content=\"none\">\n <txp:else
/>\n <txp:if_category>\n <meta name=\"robots\" content=\"noindex,
follow, noodp, noydir\">\n <txp:else />\n <txp:if_author>\n <meta
name=\"robots\" content=\"noindex, follow, noodp, noydir\">\n <txp:else
/>\n <meta name=\"robots\" content=\"index, follow, noodp, noydir\">\n
</txp:if_author>\n </txp:if_category>\n </txp:if_search>\n\n<!-- mobile
viewport optimised, more info: http://h5bp.com/viewport -->\n <meta
name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\n<!--
content feeds -->\n <txp:feed_link flavor=\"atom\" format=\"link\"
label=\"Atom\" />\n <txp:feed_link flavor=\"rss\" format=\"link\"
label=\"RSS\" />\n <txp:rsd />\n\n<!-- specify canonical, more info:
http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html
-->\n <txp:if_section name=\"\">\n <link rel=\"canonical\"
href=\"<txp:site_url />\">\n <txp:else />\n
<txp:if_individual_article>\n <link rel=\"canonical\"
href=\"<txp:permlink />\">\n <txp:else />\n <link rel=\"canonical\"
href=\"<txp:section url=\'1\' />\">\n </txp:if_individual_article>\n
</txp:if_section>\n\n<!-- css -->\n <!-- Google font API (remove this if
you intend to use the theme in a project without internet access) -->\n
<link rel=\"stylesheet\"
href=\"http://fonts.googleapis.com/css?family=PT+Serif:400,400italic,700,700italic|
Cousine\">\n\n <txp:css format=\"link\" media=\"\" />\n <!-- or you can
use (faster) external CSS files eg. <link rel=\"stylesheet\"
href=\"<txp:site_url />css/default.css\"> -->\n\n<!-- HTML5/Media Queries
support for IE < 9 (you can remove this section and the corresponding
\'js\' directory files if you don\'t intend to support IE < 9) -->\n
<!--[if lt IE 9]>\n <script src=\"<txp:site_url
/>js/html5shiv.js\"></script>\n <script src=\"<txp:site_url
/>js/css3-mediaqueries.js\"></script>\n <![endif]-->\n\n</head>\n\n<body
class=\"<txp:if_section name=\"\"><txp:if_search>search<txp:else
/>front</txp:if_search><txp:else /><txp:section
/></txp:if_section>-page\">\n\n<!-- header -->\n <header
role=\"banner\">\n <h1><txp:link_to_home><txp:site_name
/></txp:link_to_home></h1>\n <h3><txp:site_slogan /></h3>\n
</header>\n\n<!-- navigation -->\n <nav role=\"navigation\"
class=\"site-navigation\" aria-label=\"<txp:text item=\'navigation\'
/>\">\n <txp:section_list default_title=\'<txp:text item=\"home\" />\'
include_default=\"1\" wraptag=\"ul\" break=\"\">\n <li<txp:if_section
name=\'<txp:section />\'><txp:if_search><txp:else
/><txp:if_category><txp:else /><txp:if_author><txp:else />
class=\"active\"</txp:if_author></txp:if_category></txp:if_search></txp:if_section>>\n
<txp:section title=\"1\" link=\"1\" />\n </li>\n
</txp:section_list>\n </nav>\n\n <div class=\"wrapper\">\n <div
class=\"container\">\n\n<!-- left (main) column -->\n <main
role=\"main\" aria-label=\"<txp:text item=\'main_content\' />\">\n\n
<!-- is this result result page? also omits the pagination links below
(uses pagination format within search_results.article.txp instead)
-->\n <txp:if_search>\n\n <section role=\"region\" itemscope
itemtype=\"http://schema.org/SearchResultsPage\">\n <h1
itemprop=\"name\"><txp:text item=\"search_results\" /></h1>\n <div
itemprop=\"mainContentOfPage\">\n <txp:output_form
form=\"search_results\" />\n </div>\n </section>\n\n
<txp:else />\n\n <!-- else is this an article category list?
-->\n <txp:if_category>\n\n <section role=\"region\" itemscope
itemtype=\"http://schema.org/CollectionPage\">\n <h1
itemprop=\"name\"><txp:text item=\"category\" /> <txp:category title=\"1\"
/></h1>\n <div itemprop=\"mainContentOfPage\">\n
<txp:article form=\"article_listing\" limit=\"5\" />\n
</div>\n </section>\n\n <txp:else />\n\n <!-- else is
this an article author list? -->\n <txp:if_author>\n\n
<section role=\"region\" itemscope
itemtype=\"http://schema.org/CollectionPage\">\n <h1
itemprop=\"name\"><txp:text item=\"author\" /> <txp:author
/></h1>\n <div
itemprop=\"mainContentOfPage\">\n <txp:article
form=\"article_listing\" limit=\"5\" />\n </div>\n
</section>\n\n <txp:else />\n\n <!-- else display
articles normally -->\n <txp:article limit=\"5\" /> <!-- links
by default to form: \'default.article.txp\' unless you specify a different
form -->\n\n </txp:if_author>\n
</txp:if_category>\n\n <!-- add pagination links to foot of
article/article listings/category listings if there are more articles
available,\n this method is more flexibile than using simple
txp:link_to_prev/txp:link_to_next or txp:older/txp:newer tags -->\n
<txp:variable name=\"more\" value=\'<txp:older /><txp:newer />\'
/>\n <txp:variable name=\"prev\" value=\'<txp:older />\' />\n
<txp:variable name=\"next\" value=\'<txp:newer />\' />\n\n
<txp:if_variable name=\"more\" value=\"\">\n <txp:else />\n
<p class=\"paginator\">\n\n <txp:if_variable name=\"prev\"
value=\"\">\n <txp:else />\n <a
class=\"paginator-prev\" href=\"<txp:older />\" title=\"<txp:text
item=\'older\' />\" rel=\"prev\">&#8592; <txp:text item=\"older\"
/></a>\n </txp:if_variable>\n\n <txp:if_variable
name=\"next\" value=\"\">\n <txp:else />\n <a
class=\"paginator-next\" href=\"<txp:newer />\" title=\"<txp:text
item=\'newer\' />\" rel=\"next\"><txp:text item=\"newer\" />
&#8594;</a>\n </txp:if_variable>\n\n </p>\n
</txp:if_variable>\n\n </txp:if_search>\n\n </main>\n\n<!-- right
(complementary) column -->\n <div role=\"complementary\">\n
<txp:search_input /> <!-- links by default to form:
\'search_input.misc.txp\' unless you specify a different form
-->\n\n <!-- Feed links, default flavor is rss, so we don\'t need to
specify a flavor on the first feed_link -->\n <p><txp:feed_link
label=\"RSS\" class=\"feed-rss\" /> / <txp:feed_link flavor=\"atom\"
label=\"Atom\" class=\"feed-atom\" /></p>\n\n <h4><txp:text
item=\"external_links\" /></h4>\n <txp:linklist wraptag=\"ul\"
break=\"li\" limit=\"10\" /> <!-- links by default to form:
\'plainlinks.link.txp\' unless you specify a different form -->\n
</div> <!-- /complementary -->\n\n </div> <!-- /.container -->\n </div>
<!-- /.wrapper -->\n\n<!-- footer -->\n <footer role=\"contentinfo\">\n
<p><small><txp:text item=\"published_with\" /> <a
href=\"http://textpattern.com\" rel=\"external\" title=\"<txp:text
item=\'go_txp_com\' />\">Textpattern CMS</a>.</small></p>\n
</footer>\n\n<!-- JavaScript at the bottom for fast page loading, more
info: http://developer.yahoo.com/performance/rules.html#js_bottom -->\n\n
<!-- add your own JavaScript here -->\n\n</body>\n</html>')";
+$create_sql[] = "INSERT INTO `".PFX."txp_page`(`name`,`user_html`)
VALUES('error_default', '<!DOCTYPE html>\n<html lang=\"<txp:lang
/>\">\n\n<head>\n <meta charset=\"utf-8\">\n\n <title><txp:error_status
/></title>\n <meta name=\"generator\" content=\"Textpattern CMS\">\n
<meta name=\"robots\" content=\"none\">\n\n<!-- mobile viewport optimised,
more info: http://h5bp.com/viewport -->\n <meta name=\"viewport\"
content=\"width=device-width, initial-scale=1\">\n\n<!-- content feeds
-->\n <txp:feed_link flavor=\"atom\" format=\"link\" label=\"Atom\" />\n
<txp:feed_link flavor=\"rss\" format=\"link\" label=\"RSS\" />\n <txp:rsd
/>\n\n<!-- css -->\n <!-- Google font API (remove this if you intend to
use the theme in a project without internet access) -->\n <link
rel=\"stylesheet\"
href=\"http://fonts.googleapis.com/css?family=PT+Serif:400,400italic,700,700italic|
Cousine\">\n\n <txp:css format=\"link\" media=\"\" />\n <!-- or you can
use (faster) external CSS files eg. <link rel=\"stylesheet\"
href=\"<txp:site_url />css/default.css\"> -->\n\n<!-- HTML5/Media Queries
support for IE < 9 (you can remove this section and the corresponding
\'js\' directory files if you don\'t intend to support IE < 9) -->\n
<!--[if lt IE 9]>\n <script src=\"<txp:site_url
/>js/html5shiv.js\"></script>\n <script src=\"<txp:site_url
/>js/css3-mediaqueries.js\"></script>\n <![endif]-->\n\n</head>\n\n<body
class=\"error-page\">\n\n<!-- header -->\n <header role=\"banner\">\n
<h1><txp:link_to_home><txp:site_name /></txp:link_to_home></h1>\n
<h3><txp:site_slogan /></h3>\n </header>\n\n<!-- navigation -->\n <nav
role=\"navigation\" class=\"site-navigation\" aria-label=\"<txp:text
item=\'navigation\' />\">\n <txp:section_list default_title=\'<txp:text
item=\"home\" />\' include_default=\"1\" wraptag=\"ul\"
break=\"li\">\n <txp:section title=\"1\" link=\"1\" />\n
</txp:section_list>\n </nav>\n\n <div class=\"wrapper\">\n <div
class=\"container\">\n\n<!-- left (main) column -->\n <main
role=\"main\" aria-label=\"<txp:text item=\'main_content\' />\">\n
<h1 class=\"error-status\"><txp:error_status /></h1>\n <p
class=\"error-msg\"><txp:error_message /></p>\n </main>\n\n<!-- right
(complementary) column -->\n <div role=\"complementary\">\n
<txp:search_input /> <!-- links by default to form:
\'search_input.misc.txp\' unless you specify a different form
-->\n\n <!-- Feed links, default flavor is rss, so we don\'t need to
specify a flavor on the first feed_link -->\n <p><txp:feed_link
label=\"RSS\" class=\"feed-rss\" /> / <txp:feed_link flavor=\"atom\"
label=\"Atom\" class=\"feed-atom\" /></p>\n\n <h4><txp:text
item=\"external_links\" /></h4>\n <txp:linklist wraptag=\"ul\"
break=\"li\" limit=\"10\" /> <!-- links by default to form:
\'plainlinks.link.txp\' unless you specify a different form -->\n
</div> <!-- /complementary -->\n\n </div> <!-- /.container -->\n </div>
<!-- /.wrapper -->\n\n<!-- footer -->\n <footer role=\"contentinfo\">\n
<p><small><txp:text item=\"published_with\" /> <a
href=\"http://textpattern.com\" rel=\"external\" title=\"<txp:text
item=\'go_txp_com\' />\">Textpattern CMS</a>.</small></p>\n
</footer>\n\n<!-- JavaScript at the bottom for fast page loading, more
info: http://developer.yahoo.com/performance/rules.html#js_bottom -->\n\n
<!-- add your own JavaScript here -->\n\n</body>\n</html>')";
// /sql:txp_page

$create_sql[] = "CREATE TABLE `".PFX."txp_plugin` (
Reply all
Reply to author
Forward
0 new messages