diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..d5b1f9b --- /dev/null +++ b/readme.md @@ -0,0 +1,6 @@ +## Theme Name: True Blogger Theme + +##Theme URI: http://gauravtiwari.org/shop/true-blogger/ +* Description: An incredibly clean and responsive Genesis child theme for serious bloggers. +* Author: Gaurav Tiwari +* Author URI: http://gauravtiwari.org diff --git a/trueblogger/editor-style.css b/trueblogger/editor-style.css new file mode 100644 index 0000000..e6c9d4d --- /dev/null +++ b/trueblogger/editor-style.css @@ -0,0 +1,223 @@ +/* +Theme Name: awesome +Description: Used to style the content editor in posts and pages. +*/ +@import url(http://fonts.googleapis.com/css?family=Karla:400,400italic,700,700italic); + +/* =Body +----------------------------------------------- */ +html .mceContentBody { + max-width: 700px; +} + +body { + color: #333; + font-family: 'Karla', Open Sans, sans-serif; + font-size: 16px; +} + + +a, +button, +input[type="button"], +input[type="reset"], +input[type="submit"] { + -webkit-transition: all 0.1s ease-in-out; + -moz-transition: all 0.1s ease-in-out; + -ms-transition: all 0.1s ease-in-out; + -o-transition: all 0.1s ease-in-out; + transition: all 0.1s ease-in-out; +} + +a { + color: #0E46C0; + text-decoration: none; +} + +a:hover { + text-decoration: underline; +} + +p { + margin: 0 0 24px; + margin: 0 0 2.4rem; + padding: 0; +} + +strong { + font-weight: 700; +} + +ol, +ul { + margin: 0; + padding: 0; +} + +blockquote, +blockquote::before { + color: #999; +} + +blockquote { + margin: 40px 40px 24px; + margin: 4rem 4rem 2.4rem; +} + +blockquote::before { + content: "\201C"; + display: block; + font-size: 30px; + font-size: 3rem; + height: 0; + left: -20px; + position: relative; + top: -10px; +} + +.entry-content code { + background-color: #333; + color: #ddd; +} + +cite { + font-style: normal; +} + +/* Headings +--------------------------------------------- */ + + +h1 { + font-size: 36px; + font-size: 3.6rem; +} + +h2 { + font-size: 30px; + font-size: 3rem; +} + +h3 { + font-size: 24px; + font-size: 2.4rem; +} + +h4 { + font-size: 20px; + font-size: 2rem; +} + +h5 { + font-size: 18px; + font-size: 1.8rem; +} + +h6 { + font-size: 16px; + font-size: 1.6rem; +} + +/* Objects +--------------------------------------------- */ + +embed, +iframe, +img, +object, +video, +.wp-caption { + max-width: 100%; +} + +img { + height: auto; +} + +.featured-content img, +.gallery img { + width: auto; /* IE8 */ +} + +/* Forms +--------------------------------------------- */ + +input, +select, +textarea { + background-color: #f5f5f5; + border: 1px solid #ddd; + border-radius: 3px; + box-shadow: 1px 1px 3px #eee inset; + color: #999; + font-family: Karla, Open Sans, sans-serif; + font-size: 14px; + font-size: 1.4rem; + padding: 16px; + padding: 1.6rem; + width: 100%; +} + +button, +input[type="button"], +input[type="reset"], +input[type="submit"] { + background-color: #222; + border: none; + box-shadow: none; + color: #fff; + cursor: pointer; + font-family: 'Karla', sans-serif; + font-weight: 400; + letter-spacing: 1px; + letter-spacing: 0.1rem; + padding: 16px 24px; + padding: 1.6rem 2.4rem; + text-transform: uppercase; + width: auto; +} + +button:hover, +input:hover[type="button"], +input:hover[type="reset"], +input:hover[type="submit"] { + background-color: #ed702b; +} + +input[type="search"]::-webkit-search-cancel-button, +input[type="search"]::-webkit-search-results-button { + display: none; +} + +/* Tables +--------------------------------------------- */ + +table { + border-collapse: collapse; + border-spacing: 0; + line-height: 2; + margin-bottom: 40px; + margin-bottom: 4rem; + width: 100%; +} + +tbody { + border-bottom: 1px solid #ddd; +} + +th, +td { + text-align: left; +} + +th { + font-weight: bold; + text-transform: uppercase; +} + +td { + border-top: 1px solid #ddd; + padding: 6px 0; + padding: 0.6rem 0; +} + diff --git a/trueblogger/functions.php b/trueblogger/functions.php new file mode 100644 index 0000000..e349aa8 --- /dev/null +++ b/trueblogger/functions.php @@ -0,0 +1,71 @@ + 1, + 'feature_image_size' => 0, + 'feature_image_class' => 'alignleft post-image', + 'feature_content_limit' => 0, + 'grid_image_size' => 'grid-featured', + 'grid_image_class' => 'grid-featured', + 'grid_content_limit' => 250, + 'more' => __( 'Keep Reading', 'trueblogger' ), + ) ); + } else { + genesis_standard_loop(); + } + +} + +//* Run the Genesis loop +genesis(); diff --git a/trueblogger/images/favicon.ico b/trueblogger/images/favicon.ico new file mode 100644 index 0000000..0d6da51 Binary files /dev/null and b/trueblogger/images/favicon.ico differ diff --git a/trueblogger/images/follow.png b/trueblogger/images/follow.png new file mode 100644 index 0000000..de61627 Binary files /dev/null and b/trueblogger/images/follow.png differ diff --git a/trueblogger/images/like.png b/trueblogger/images/like.png new file mode 100644 index 0000000..204faca Binary files /dev/null and b/trueblogger/images/like.png differ diff --git a/trueblogger/images/plus.png b/trueblogger/images/plus.png new file mode 100644 index 0000000..93ba1ef Binary files /dev/null and b/trueblogger/images/plus.png differ diff --git a/trueblogger/images/subscribe.png b/trueblogger/images/subscribe.png new file mode 100644 index 0000000..db2582e Binary files /dev/null and b/trueblogger/images/subscribe.png differ diff --git a/trueblogger/languages/trueblogger.pot b/trueblogger/languages/trueblogger.pot new file mode 100644 index 0000000..74db3a4 --- /dev/null +++ b/trueblogger/languages/trueblogger.pot @@ -0,0 +1,32 @@ +msgid "" +msgstr "" +"Project-Id-Version: True Blogger Child Theme for Genesis Framework\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-01-01 13:46-0500\n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" +"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" +"X-Textdomain-Support: yes\n" +"X-Poedit-Basepath: ..\n" +"X-Generator: Poedit 1.5.7\n" +"X-Poedit-SearchPath-0: .\n" + +#: functions.php:9 +msgid "True Blogger Theme" +msgstr "" + +#: functions.php:30 +msgid "True Blogger Blue" +msgstr "" + + +#: home.php:17 +msgid "Continue reading" +msgstr "" diff --git a/trueblogger/page_landing.php b/trueblogger/page_landing.php new file mode 100644 index 0000000..e1ec190 --- /dev/null +++ b/trueblogger/page_landing.php @@ -0,0 +1,53 @@ + a { + color: #ed702b; + text-decoration: none; +} + +.genesis-nav-menu > .menu-item > a { + text-transform: uppercase; +} + +.genesis-nav-menu .sub-menu { + left: -9999px; + opacity: 0; + position: absolute; + -webkit-transition: opacity .4s ease-in-out; + -moz-transition: opacity .4s ease-in-out; + -ms-transition: opacity .4s ease-in-out; + -o-transition: opacity .4s ease-in-out; + transition: opacity .4s ease-in-out; + width: 190px; + z-index: 99; +} + +.genesis-nav-menu .sub-menu a { + background-color: #fff; + border: 1px solid #eee; + border-top: none; + letter-spacing: 0; + padding: 16px 20px; + padding: 1.6rem 2rem; + position: relative; + width: 190px; +} + +.genesis-nav-menu .sub-menu .sub-menu { + margin: -54px 0 0 189px; +} + +.genesis-nav-menu .menu-item:hover { + position: static; +} + +.genesis-nav-menu .menu-item:hover > .sub-menu { + left: auto; + opacity: 1; +} + +.genesis-nav-menu > .first > a { + padding-left: 0; +} + +.genesis-nav-menu > .last > a { + padding-right: 0; +} + +.genesis-nav-menu > .right { + display: inline-block; + float: right; + list-style-type: none; + padding: 22px 18px; + padding: 2.2rem 1.8rem; + text-transform: uppercase; +} + +.genesis-nav-menu > .right > a { + display: inline; + padding: 0; +} + +.genesis-nav-menu > .rss > a { + margin-left: 48px; + margin-left: 4.8rem; +} + +.genesis-nav-menu > .search { + padding: 8px 12px 0 0; + padding: 0.8rem 1.2rem 0 0; +} + +.genesis-nav-menu .search-form { + width: 100%; +} + +/* Site Header Navigation +--------------------------------------------- */ + +.site-header .sub-menu a { + background: #333; +} + +.site-header .current-menu-item > a, +.site-header .genesis-nav-menu a:hover, +.site-header .sub-menu a:hover { + color: #ed702b; +} + +/* Primary Navigation +--------------------------------------------- */ + +.nav-primary a, .nav-primary .sub-menu a { + color: #333; + /* padding-right: 15px; */ + border: 2px solid #eee; + margin-right: 0; + margin-left: 0; + background: #fff; + z-index: 999; +} + + +.nav-primary { + border: 0; + /* box-shadow: 2px 2px 2px -2px #999; */ + top: 20px; + right: 0; + position: fixed; + z-index: 999; + float: right; +} +.nav-primary .wrap { + border: none; +} + +.nav-primary a:hover, +.nav-primary .current-menu-item > a, +.nav-primary .sub-menu a:hover, +.nav-primary .sub-menu .current-menu-item > a:hover { + color: #ed702b; +} + +.nav-primary .sub-menu .current-menu-item > a { + color: #fff; +} + + + +/* +Content Area +---------------------------------------------------------------------------------------------------- */ + +/* Entries +--------------------------------------------- */ + +.entry { + margin-bottom: 40px; + margin-bottom: 4rem; +} + +.single .entry { + margin-bottom: 16px; + margin-bottom: 1.6rem; +} + +.trueblogger-landing .entry { + background-color: #fff; + padding: 40px 40px 16px; + padding: 4rem 4rem 1.6rem; +} + +.entry-content ol, +.entry-content p, +.entry-content ul { + margin-bottom: 26px; + margin-bottom: 2.6rem; +} + +.entry-content ol, +.entry-content ul { + margin-left: 40px; + margin-left: 4rem; +} + +.entry-content ol li { + list-style-type: decimal; +} + +.entry-content ul li { + list-style-type: disc; +} + +.entry-content ol ol, +.entry-content ul ul, +.entry-content .wp-caption p { + margin-bottom: 0; +} + +.entry-meta { + clear: both; + color: #999; + font-size: 14px; + font-size: 1.4rem; +} +.entry-meta a { + background: #fff; + padding: 10px; + color: #000; + text-transform: uppercase; + font-size: 16px; + font-weight: 700; +} +header.entry-header .entry-meta a { + font-size: 12px; +} + +.entry-header .entry-meta { + margin-bottom: 24px; + margin-bottom: 2.4rem; +} +header.entry-header .entry-meta { + float: right; + width: 200px; + position: relative; + background: #fff; + padding: 15px; + color: #000; + text-align: justify; + text-transform: uppercase; +} + +.entry-footer .entry-meta { + padding: 1.2rem; + box-shadow: 5px 5px 2px #999; + border-top-color: #333; + border-top-style: solid; + border-top-width: 2px; + border-right-width: 0; + border-bottom-color: #333; + border-bottom-style: solid; + border-bottom-width: 2px; + border-left-color: rgb(238, 238, 238); + border-left-style: solid; + border-left-width: 2px; + background: #333; +} + +.entry-comments-link::before { + content: "\2014"; + margin: 0 6px 0 2px; + margin: 0 0.6rem 0 0.2rem; +} + +.entry-categories, +.entry-tags { + display: block; +} + +/* Pagination +--------------------------------------------- */ + +.archive-pagination, +.entry-pagination { + clear: both; + font-family: 'Karla', sans-serif; + font-size: 14px; + font-size: 1.4rem; + margin: 40px 0; + margin: 4rem 0; +} + +.archive-pagination li { + display: inline; +} + +.archive-pagination a { + background-color: #222; + border-radius: 3px; + color: #fff; + cursor: pointer; + display: inline-block; + padding: 8px 12px; + padding: 0.8rem 1.2rem; +} + +.archive-pagination a:hover, +.archive-pagination li.active a { + background-color: #ed702b; + text-decoration: none; +} + +/* Comments +--------------------------------------------- */ + +.entry-comments, +.ping-list { + margin-bottom: 40px; + margin-bottom: 4rem; +} + +.entry-comments .comment-author { + margin-bottom: 0; +} + +.comment-respond input[type="email"], +.comment-respond input[type="text"], +.comment-respond input[type="url"] { + width: 50% +} + +.comment-respond label { + display: block; + margin-right: 12px; + margin-right: 1.2rem; +} + +.comment-list li, +.ping-list li { + list-style-type: none; + margin-top: 24px; + margin-top: 2.4rem; + padding: 32px; + padding: 3.2rem; +} + +.comment-list li li { + margin-right: -32px; + margin-right: -3.2rem; +} + +.comment { + background-color: #f5f5f5; + border: 2px solid #fff; + border-right: none; +} + +.comment .avatar { + margin: 0 16px 24px 0; + margin: 0 1.6rem 2.4rem 0; +} + +.bypostauthor { +} + +.form-allowed-tags { + background-color: #f5f5f5; + font-size: 14px; + font-size: 1.4rem; + padding: 24px; + padding: 2.4rem; +} + + +/* +Sidebars +---------------------------------------------------------------------------------------------------- */ + +.sidebar { + display: inline; + font-size: 14px; + font-size: 1.4rem; + padding-top: 32px; + padding-top: 3.2rem; +} + +.sidebar p:last-child, +.sidebar ul { + margin-bottom: 0; +} + +.sidebar li { + border-bottom: 1px solid #ddd; + list-style-type: none; + margin-bottom: 8px; + margin-bottom: 0.8rem; + padding-bottom: 8px; + padding-bottom: 0.8rem; + word-wrap: break-word; +} + +.widget ul > li:last-child { + border-width: 0; + margin-bottom: 0; + padding-bottom: 0; +} + +.sidebar .widget { + margin-bottom: 40px; + margin-bottom: 4rem; +} + +.sidebar .search-form { + width: 100%; +} + + +/* +Footer Widgets +---------------------------------------------------------------------------------------------------- */ + +.footer-widgets { + background: #333; + color: #999; + clear: both; + font-size: 14px; + font-size: 1.4rem; + padding: 40px 0 8px; + padding: 4rem 0 0.8rem; +} +.footer-widgets a { +color: #eeefff; +} + +.footer-widgets-1, +.footer-widgets-3 { + width: 350px; +} + +.footer-widgets-2 { + width: 360px; +} + +.footer-widgets-1 { + margin-right: 40px; + margin-right: 4rem; +} + +.footer-widgets-1, +.footer-widgets-2 { + float: left; +} + +.footer-widgets-3 { + float: right; +} + +.footer-widgets .widget { + margin-bottom: 32px; + margin-bottom: 3.2rem; +} + +.footer-widgets .entry-title a, +.footer-widgets .widgettitle { + color: #fff; +} + +.footer-widgets li { + border-bottom: 1px solid #333; + list-style-type: none; + margin-bottom: 8px; + margin-bottom: 0.8rem; + padding-bottom: 8px; + padding-bottom: 0.8rem; + word-wrap: break-word; +} + +.footer-widgets .search-form { + width: 100%; +} + +.footer-widgets .latest-tweets li span a { + color: #ccc; +} + + +/* +Site Footer +---------------------------------------------------------------------------------------------------- */ + +.site-footer { + font-size: 14px; + font-size: 1.4rem; + padding: 24px 0; + padding: 2.4rem 0; + text-align: center; +} + +.site-footer, +.site-footer a { + color: #333; +} + +.site-footer a:hover { + color: #ed702b; +} + +.site-footer p { + margin-bottom: 0; +} + +/* +Media Queries +---------------------------------------------------------------------------------------------------- */ + +/* Desktops, laptops and iPads (landscape) +--------------------------------------------- */ + +@media only screen and (max-width: 1139px) { + + .wrap { + max-width: 960px; + } + + .content-sidebar-sidebar .content-sidebar-wrap, + .sidebar-content-sidebar .content-sidebar-wrap, + .sidebar-sidebar-content .content-sidebar-wrap { + width: 740px; + } + + .content, + .site-header .widget-area { + width: 620px; + } + + .sidebar-content-sidebar .content, + .sidebar-sidebar-content .content, + .content-sidebar-sidebar .content { + width: 400px; + } + + .footer-widgets-1, + .footer-widgets-2, + .footer-widgets-3, + .sidebar-primary, + .title-area { + width: 300px; + } + +} + +/* iPads (portrait) +--------------------------------------------- */ + +@media only screen and (max-width: 1023px) { + + .header-image .site-header .title-area { + background-position: center center !important; + } + + .wrap { + max-width: 768px; + } + + .content, + .content-sidebar-sidebar .content, + .content-sidebar-sidebar .content-sidebar-wrap, + .footer-widgets-1, + .footer-widgets-2, + .footer-widgets-3, + .sidebar-content-sidebar .content, + .sidebar-content-sidebar .content-sidebar-wrap, + .sidebar-primary, + .sidebar-secondary, + .sidebar-sidebar-content .content, + .sidebar-sidebar-content .content-sidebar-wrap, + .site-header .widget-area, + .title-area { + width: 100%; + } + + .site-header { + position: relative; + } + + .site-inner { + margin-top: 0; + padding-left: 5%; + padding-right: 5%; + } + + .comment-respond, + .entry, + .entry-comments, + .entry-footer .entry-meta, + .sidebar .widget, + .site-header { + padding: 0; + } + + .genesis-nav-menu li, + .site-header ul.genesis-nav-menu, + .site-header .search-form { + float: none; + } + + .genesis-nav-menu, + .site-header .title-area, + .site-header .search-form, + .site-header .widget-area, + .site-title { + text-align: center; + } + + .genesis-nav-menu a, + .genesis-nav-menu > .first > a, + .genesis-nav-menu > .last > a { + padding: 20px 16px; + padding: 2rem 1.6rem; + } + + .site-header .search-form { + margin: 16px auto ; + margin: 1.6rem auto; + } + + .genesis-nav-menu li.right { + display: none; + } + + .content { + border: none; + padding-left: 0; + padding-right: 0; + } + + .entry-footer .entry-meta { + margin: 0; + padding-top: 12px; + padding-top: 1.2rem; + } + + .author-box { + padding: 20px; + padding: 2rem; + } + + .sidebar-content-sidebar .author-box { + margin-left: 0; + margin-right: 0; + } + + .footer-widgets { + padding: 40px 5% 16px; + } + + .footer-widgets-1 { + margin: 0; + } + +} + +/* iPhones (portrait and landscape) +--------------------------------------------- */ + +@media only screen and (max-width: 767px) { + + .five-sixths, + .four-sixths, + .one-fourth, + .one-half, + .one-sixth, + .one-third, + .three-fourths, + .three-sixths, + .two-fourths, + .two-sixths, + .two-thirds { + margin: 0; + width: 100%; + } + + .genesis-grid-even, + .genesis-grid-odd { + width: 100%; + } + .nav-primary { position: relative;} + +} + +@media only screen and (max-width: 320px) { + + .header-image .site-header .title-area { + background-size: contain !important; + } + .nav-primary {position: relative;} + +} \ No newline at end of file diff --git a/trueblogger/xml/sample.xml b/trueblogger/xml/sample.xml new file mode 100644 index 0000000..9ff7f4a --- /dev/null +++ b/trueblogger/xml/sample.xml @@ -0,0 +1,3946 @@ + + + + + + + + + + + + + + + + + + + + + + + Genesis Framework + http://www.genesisframework.com + Supports HTML5 & Mobile Responsive Design + Wed, 25 Sep 2013 02:20:49 +0000 + en-US + 1.2 + http://www.genesisframework.com + http://www.genesisframework.com + + 2bgardnerdemo-comments@studiopress.com + + 3category-1 + 4category-2 + 5category-3 + 6category-4 + 38category-5 + 1post-formats + 8sub-category-11category-1 + 9sub-category-12category-1 + 10sub-category-13category-1 + 11sub-category-21sub-category-11 + 12sub-category-22sub-category-11 + 13sub-category-23sub-category-11 + 14sub-category-31sub-category-21 + 15sub-category-32sub-category-21 + 16sub-category-33sub-category-21 + 17blockquotes + 18headlines + 19images-centered + 20images-left + 21images-right + 22ordered-lists + 39tables + 23threaded-comments + 24unordered-lists + 25nav_menuprimary-navigation + 26nav_menusecondary-navigation + 28nav_menucontributors + + http://wordpress.org/?v=3.7-alpha-24954 + + + + http://www.genesisframework.com/36/ + Mon, 24 Sep 2012 19:34:05 +0000 + bgardner + http://genesisframework.com/2012/09/24/36/ + + + + 36 + 2012-09-24 19:34:05 + 2012-09-24 19:34:05 + open + open + 36 + publish + 0 + 1 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + http://www.genesisframework.com/37/ + Mon, 24 Sep 2012 19:34:05 +0000 + bgardner + http://genesisframework.com/2012/09/24/37/ + + + + 37 + 2012-09-24 19:34:05 + 2012-09-24 19:34:05 + open + open + 37 + publish + 0 + 2 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + http://www.genesisframework.com/38/ + Mon, 24 Sep 2012 19:34:05 +0000 + bgardner + http://genesisframework.com/2012/09/24/38/ + + + + 38 + 2012-09-24 19:34:05 + 2012-09-24 19:34:05 + open + open + 38 + publish + 0 + 12 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + http://www.genesisframework.com/39/ + Mon, 24 Sep 2012 19:34:05 +0000 + bgardner + http://genesisframework.com/2012/09/24/39/ + + + + 39 + 2012-09-24 19:34:05 + 2012-09-24 19:34:05 + open + open + 39 + publish + 0 + 13 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + http://www.genesisframework.com/41/ + Mon, 24 Sep 2012 19:34:05 +0000 + bgardner + http://genesisframework.com/2012/09/24/41/ + + + + 41 + 2012-09-24 19:34:05 + 2012-09-24 19:34:05 + open + open + 41 + publish + 3 + 3 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + http://www.genesisframework.com/42/ + Mon, 24 Sep 2012 19:34:05 +0000 + bgardner + http://genesisframework.com/2012/09/24/42/ + + + + 42 + 2012-09-24 19:34:05 + 2012-09-24 19:34:05 + open + open + 42 + publish + 3 + 10 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + http://www.genesisframework.com/43/ + Mon, 24 Sep 2012 19:34:05 +0000 + bgardner + http://genesisframework.com/2012/09/24/43/ + + + + 43 + 2012-09-24 19:34:05 + 2012-09-24 19:34:05 + open + open + 43 + publish + 3 + 11 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + http://www.genesisframework.com/44/ + Mon, 24 Sep 2012 19:34:05 +0000 + bgardner + http://genesisframework.com/2012/09/24/44/ + + + + 44 + 2012-09-24 19:34:05 + 2012-09-24 19:34:05 + open + open + 44 + publish + 8 + 4 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + http://www.genesisframework.com/45/ + Mon, 24 Sep 2012 19:34:05 +0000 + bgardner + http://genesisframework.com/2012/09/24/45/ + + + + 45 + 2012-09-24 19:34:05 + 2012-09-24 19:34:05 + open + open + 45 + publish + 8 + 8 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + http://www.genesisframework.com/46/ + Mon, 24 Sep 2012 19:34:05 +0000 + bgardner + http://genesisframework.com/2012/09/24/46/ + + + + 46 + 2012-09-24 19:34:05 + 2012-09-24 19:34:05 + open + open + 46 + publish + 8 + 9 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + http://www.genesisframework.com/47/ + Mon, 24 Sep 2012 19:34:05 +0000 + bgardner + http://genesisframework.com/2012/09/24/47/ + + + + 47 + 2012-09-24 19:34:05 + 2012-09-24 19:34:05 + open + open + 47 + publish + 11 + 5 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + http://www.genesisframework.com/48/ + Mon, 24 Sep 2012 19:34:05 +0000 + bgardner + http://genesisframework.com/2012/09/24/48/ + + + + 48 + 2012-09-24 19:34:05 + 2012-09-24 19:34:05 + open + open + 48 + publish + 11 + 6 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + http://www.genesisframework.com/49/ + Mon, 24 Sep 2012 19:34:05 +0000 + bgardner + http://genesisframework.com/2012/09/24/49/ + + + + 49 + 2012-09-24 19:34:05 + 2012-09-24 19:34:05 + open + open + 49 + publish + 11 + 7 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Layouts + http://www.genesisframework.com/page-layouts/ + Mon, 24 Sep 2012 19:34:05 +0000 + bgardner + http://genesisframework.com/2012/09/24/page-layouts/ + + + + 50 + 2012-09-24 19:34:05 + 2012-09-24 19:34:05 + open + open + page-layouts + publish + 0 + 11 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Templates + http://www.genesisframework.com/page-templates/ + Mon, 24 Sep 2012 19:34:05 +0000 + bgardner + http://genesisframework.com/2012/09/24/page-templates/ + + + + 51 + 2012-09-24 19:34:05 + 2012-09-24 19:34:05 + open + open + page-templates + publish + 0 + 18 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + http://www.genesisframework.com/183/ + Mon, 24 Sep 2012 19:34:05 +0000 + bgardner + http://genesisframework.com/2012/09/24/183/ + + + + 183 + 2012-09-24 19:34:05 + 2012-09-24 19:34:05 + open + open + 183 + publish + 75 + 19 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + http://www.genesisframework.com/184/ + Mon, 24 Sep 2012 19:34:05 +0000 + bgardner + http://genesisframework.com/2012/09/24/184/ + + + + 184 + 2012-09-24 19:34:05 + 2012-09-24 19:34:05 + open + open + 184 + publish + 75 + 20 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Columns Page + http://www.genesisframework.com/185/ + Mon, 24 Sep 2012 19:34:05 +0000 + bgardner + http://genesisframework.com/2012/09/24/185/ + + + + 185 + 2012-09-24 19:34:05 + 2012-09-24 19:34:05 + open + open + 185 + publish + 0 + 21 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + http://www.genesisframework.com/186/ + Mon, 24 Sep 2012 19:34:05 +0000 + bgardner + http://genesisframework.com/2012/09/24/186/ + + + + 186 + 2012-09-24 19:34:05 + 2012-09-24 19:34:05 + open + open + 186 + publish + 61 + 12 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + wordpress + http://www.genesisframework.com/?attachment_id=434 + Tue, 04 Jun 2013 01:08:12 +0000 + bgardner + http://www.genesisframework.com/wp-content/uploads/wordpress.png + + + + 434 + 2013-06-04 01:08:12 + 2013-06-04 01:08:12 + open + open + wordpress + inherit + 0 + 0 + attachment + + 0 + http://www.genesisframework.com/wp-content/uploads/wordpress.png + + _wp_attached_file + + + + _wp_attachment_metadata + + + + + + http://www.genesisframework.com/187/ + Mon, 24 Sep 2012 19:34:05 +0000 + bgardner + http://genesisframework.com/2012/09/24/187/ + + + + 187 + 2012-09-24 19:34:05 + 2012-09-24 19:34:05 + open + open + 187 + publish + 61 + 14 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + http://www.genesisframework.com/188/ + Mon, 24 Sep 2012 19:34:05 +0000 + bgardner + http://genesisframework.com/2012/09/24/188/ + + + + 188 + 2012-09-24 19:34:05 + 2012-09-24 19:34:05 + open + open + 188 + publish + 61 + 17 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Sample + http://www.genesisframework.com/189/ + Mon, 24 Sep 2012 19:34:05 +0000 + bgardner + http://genesisframework.com/2012/09/24/189/ + + + + 189 + 2012-09-24 19:34:05 + 2012-09-24 19:34:05 + open + open + 189 + publish + 0 + 1 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + http://www.genesisframework.com/190/ + Mon, 24 Sep 2012 19:34:05 +0000 + bgardner + http://genesisframework.com/2012/09/24/190/ + + + + 190 + 2012-09-24 19:34:05 + 2012-09-24 19:34:05 + open + open + 190 + publish + 61 + 13 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + http://www.genesisframework.com/191/ + Mon, 24 Sep 2012 19:34:05 +0000 + bgardner + http://genesisframework.com/2012/09/24/191/ + + + + 191 + 2012-09-24 19:34:05 + 2012-09-24 19:34:05 + open + open + 191 + publish + 61 + 16 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + http://www.genesisframework.com/192/ + Mon, 24 Sep 2012 19:34:05 +0000 + bgardner + http://genesisframework.com/2012/09/24/192/ + + + + 192 + 2012-09-24 19:34:05 + 2012-09-24 19:34:05 + open + open + 192 + publish + 61 + 15 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + http://www.genesisframework.com/193/ + Mon, 24 Sep 2012 19:34:05 +0000 + bgardner + http://genesisframework.com/2012/09/24/193/ + + + + 193 + 2012-09-24 19:34:05 + 2012-09-24 19:34:05 + open + open + 193 + publish + 31 + 2 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + http://www.genesisframework.com/194/ + Mon, 24 Sep 2012 19:34:05 +0000 + bgardner + http://genesisframework.com/2012/09/24/194/ + + + + 194 + 2012-09-24 19:34:05 + 2012-09-24 19:34:05 + open + open + 194 + publish + 31 + 9 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + http://www.genesisframework.com/195/ + Mon, 24 Sep 2012 19:34:06 +0000 + bgardner + http://genesisframework.com/2012/09/24/195/ + + + + 195 + 2012-09-24 19:34:06 + 2012-09-24 19:34:06 + open + open + 195 + publish + 31 + 10 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + http://www.genesisframework.com/196/ + Mon, 24 Sep 2012 19:34:06 +0000 + bgardner + http://genesisframework.com/2012/09/24/196/ + + + + 196 + 2012-09-24 19:34:06 + 2012-09-24 19:34:06 + open + open + 196 + publish + 33 + 3 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + http://www.genesisframework.com/197/ + Mon, 24 Sep 2012 19:34:06 +0000 + bgardner + http://genesisframework.com/2012/09/24/197/ + + + + 197 + 2012-09-24 19:34:06 + 2012-09-24 19:34:06 + open + open + 197 + publish + 33 + 7 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + http://www.genesisframework.com/198/ + Mon, 24 Sep 2012 19:34:06 +0000 + bgardner + http://genesisframework.com/2012/09/24/198/ + + + + 198 + 2012-09-24 19:34:06 + 2012-09-24 19:34:06 + open + open + 198 + publish + 33 + 8 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + http://www.genesisframework.com/199/ + Mon, 24 Sep 2012 19:34:06 +0000 + bgardner + http://genesisframework.com/2012/09/24/199/ + + + + 199 + 2012-09-24 19:34:06 + 2012-09-24 19:34:06 + open + open + 199 + publish + 53 + 4 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + http://www.genesisframework.com/200/ + Mon, 24 Sep 2012 19:34:06 +0000 + bgardner + http://genesisframework.com/2012/09/24/200/ + + + + 200 + 2012-09-24 19:34:06 + 2012-09-24 19:34:06 + open + open + 200 + publish + 53 + 5 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + http://www.genesisframework.com/201/ + Mon, 24 Sep 2012 19:34:06 +0000 + bgardner + http://genesisframework.com/2012/09/24/201/ + + + + 201 + 2012-09-24 19:34:06 + 2012-09-24 19:34:06 + open + open + 201 + publish + 53 + 6 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Contact + http://www.genesisframework.com/202/ + Mon, 24 Sep 2012 19:34:06 +0000 + bgardner + http://genesisframework.com/2012/09/24/202/ + + + + 202 + 2012-09-24 19:34:06 + 2012-09-24 19:34:06 + open + open + 202 + publish + 0 + 22 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Brian Gardner + http://www.genesisframework.com/brian-gardner/ + Fri, 02 Nov 2012 17:27:40 +0000 + bgardner + http://www.genesisframework.com/?p=282 + + + + 282 + 2012-11-02 17:27:40 + 2012-11-02 17:27:40 + open + open + brian-gardner + publish + 0 + 1 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Nathan Rice + http://www.genesisframework.com/nathan-rice/ + Fri, 02 Nov 2012 17:27:41 +0000 + bgardner + http://www.genesisframework.com/?p=283 + + + + 283 + 2012-11-02 17:27:41 + 2012-11-02 17:27:41 + open + open + nathan-rice + publish + 0 + 2 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Ron Rennick + http://www.genesisframework.com/ron-rennick/ + Fri, 02 Nov 2012 17:27:41 +0000 + bgardner + http://www.genesisframework.com/?p=284 + + + + 284 + 2012-11-02 17:27:41 + 2012-11-02 17:27:41 + open + open + ron-rennick + publish + 0 + 5 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Rafal Tomal + http://www.genesisframework.com/rafal-tomal/ + Fri, 02 Nov 2012 17:27:41 +0000 + bgardner + http://www.genesisframework.com/?p=285 + + + + 285 + 2012-11-02 17:27:41 + 2012-11-02 17:27:41 + open + open + rafal-tomal + publish + 0 + 4 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Sample Page + http://www.genesisframework.com/sample/ + Sun, 15 Aug 2010 19:03:46 +0000 + bgardner + http://demo.studiopress.com/genesis + + + + 31 + 2010-08-15 19:03:46 + 2010-08-15 19:03:46 + open + closed + sample + publish + 0 + 0 + page + + 0 + + _wp_page_template + + + + _edit_last + + + + + Sub Page 1.1 + http://www.genesisframework.com/sample/sub-page-11/ + Sun, 15 Aug 2010 19:04:08 +0000 + bgardner + http://demo.studiopress.com/genesis + + + + 33 + 2010-08-15 19:04:08 + 2010-08-15 19:04:08 + open + closed + sub-page-11 + publish + 31 + 0 + page + + 0 + + _wp_page_template + + + + _edit_last + + + + + Sub Page 1.2 + http://www.genesisframework.com/sample/sub-page-12/ + Sun, 15 Aug 2010 19:04:33 +0000 + bgardner + http://demo.studiopress.com/genesis + + + + 35 + 2010-08-15 19:04:33 + 2010-08-15 19:04:33 + open + closed + sub-page-12 + publish + 31 + 0 + page + + 0 + + _wp_page_template + + + + _edit_last + + + + + Sub Page 1.3 + http://www.genesisframework.com/sample/sub-page-13/ + Sun, 15 Aug 2010 19:04:52 +0000 + bgardner + http://demo.studiopress.com/genesis + + + + 52 + 2010-08-15 19:04:52 + 2010-08-15 19:04:52 + open + closed + sub-page-13 + publish + 31 + 0 + page + + 0 + + _edit_last + + + + _wp_page_template + + + + _genesis_layout + + + + + Sub Page 2.1 + http://www.genesisframework.com/sample/sub-page-11/sub-page-21/ + Sun, 15 Aug 2010 19:05:12 +0000 + bgardner + http://demo.studiopress.com/genesis + + + + 53 + 2010-08-15 19:05:12 + 2010-08-15 19:05:12 + open + closed + sub-page-21 + publish + 33 + 0 + page + + 0 + + _edit_last + + + + _wp_page_template + + + + + Sub Page 2.2 + http://www.genesisframework.com/sample/sub-page-11/sub-page-22/ + Sun, 15 Aug 2010 19:05:25 +0000 + bgardner + http://demo.studiopress.com/genesis + + + + 54 + 2010-08-15 19:05:25 + 2010-08-15 19:05:25 + open + closed + sub-page-22 + publish + 33 + 0 + page + + 0 + + _edit_last + + + + _wp_page_template + + + + + Sub Page 2.3 + http://www.genesisframework.com/sample/sub-page-11/sub-page-23/ + Sun, 15 Aug 2010 19:05:43 +0000 + bgardner + http://demo.studiopress.com/genesis + + + + 55 + 2010-08-15 19:05:43 + 2010-08-15 19:05:43 + open + closed + sub-page-23 + publish + 33 + 0 + page + + 0 + + _edit_last + + + + _wp_page_template + + + + + Sub Page 3.1 + http://www.genesisframework.com/sample/sub-page-11/sub-page-21/sub-page-31/ + Sun, 15 Aug 2010 19:06:00 +0000 + bgardner + http://demo.studiopress.com/genesis + + + + 56 + 2010-08-15 19:06:00 + 2010-08-15 19:06:00 + open + closed + sub-page-31 + publish + 53 + 0 + page + + 0 + + _edit_last + + + + _wp_page_template + + + + + Sub Page 3.2 + http://www.genesisframework.com/sample/sub-page-11/sub-page-21/sub-page-32/ + Sun, 15 Aug 2010 19:06:13 +0000 + bgardner + http://demo.studiopress.com/genesis + + + + 57 + 2010-08-15 19:06:13 + 2010-08-15 19:06:13 + open + closed + sub-page-32 + publish + 53 + 0 + page + + 0 + + _edit_last + + + + _wp_page_template + + + + + Sub Page 3.3 + http://www.genesisframework.com/sample/sub-page-11/sub-page-21/sub-page-33/ + Sun, 15 Aug 2010 19:06:28 +0000 + bgardner + http://demo.studiopress.com/genesis + + + + 58 + 2010-08-15 19:06:28 + 2010-08-15 19:06:28 + open + closed + sub-page-33 + publish + 53 + 0 + page + + 0 + + _edit_last + + + + _wp_page_template + + + + + Page Layouts + http://www.genesisframework.com/layouts/ + Sun, 15 Aug 2010 19:08:02 +0000 + bgardner + http://demo.studiopress.com/genesis + + +
  • Content/Sidebar
  • +
  • Sidebar/Content
  • +
  • Content/Sidebar/Sidebar
  • +
  • Sidebar/Sidebar/Content
  • +
  • Sidebar/Content/Sidebar
  • +
  • Full Width Content
  • +]]>
    + + 61 + 2010-08-15 19:08:02 + 2010-08-15 19:08:02 + open + closed + layouts + publish + 0 + 0 + page + + 0 + + _edit_last + + + + _wp_page_template + + +
    + + Content/Sidebar + http://www.genesisframework.com/layouts/cs/ + Sun, 15 Aug 2010 19:09:00 +0000 + bgardner + http://demo.studiopress.com/genesis + + + + 63 + 2010-08-15 19:09:00 + 2010-08-15 19:09:00 + open + closed + cs + publish + 61 + 0 + page + + 0 + + _edit_last + + + + _wp_page_template + + + + _genesis_layout + + + + + Sidebar/Content + http://www.genesisframework.com/layouts/sc/ + Sun, 15 Aug 2010 19:09:20 +0000 + bgardner + http://demo.studiopress.com/genesis + + + + 65 + 2010-08-15 19:09:20 + 2010-08-15 19:09:20 + open + closed + sc + publish + 61 + 0 + page + + 0 + + _edit_last + + + + _wp_page_template + + + + _genesis_layout + + + + + Content/Sidebar/Sidebar + http://www.genesisframework.com/layouts/css/ + Sun, 15 Aug 2010 19:09:42 +0000 + bgardner + http://demo.studiopress.com/genesis + + + + 67 + 2010-08-15 19:09:42 + 2010-08-15 19:09:42 + open + closed + css + publish + 61 + 0 + page + + 0 + + _edit_last + + + + _wp_page_template + + + + _genesis_layout + + + + + Sidebar/Sidebar/Content + http://www.genesisframework.com/layouts/ssc/ + Sun, 15 Aug 2010 19:10:30 +0000 + bgardner + http://demo.studiopress.com/genesis + + + + 69 + 2010-08-15 19:10:30 + 2010-08-15 19:10:30 + open + closed + ssc + publish + 61 + 0 + page + + 0 + + _edit_last + + + + _wp_page_template + + + + _genesis_layout + + + + + Sidebar/Content/Sidebar + http://www.genesisframework.com/layouts/scs/ + Sun, 15 Aug 2010 19:10:48 +0000 + bgardner + http://demo.studiopress.com/genesis + + + + 71 + 2010-08-15 19:10:48 + 2010-08-15 19:10:48 + open + closed + scs + publish + 61 + 0 + page + + 0 + + _edit_last + + + + _wp_page_template + + + + _genesis_layout + + + + + Full Width Content + http://www.genesisframework.com/layouts/fwc/ + Sun, 15 Aug 2010 19:11:13 +0000 + bgardner + http://demo.studiopress.com/genesis + + + + 73 + 2010-08-15 19:11:13 + 2010-08-15 19:11:13 + open + closed + fwc + publish + 61 + 0 + page + + 0 + + _edit_last + + + + _wp_page_template + + + + _genesis_layout + + + + + Nick Croft + http://www.genesisframework.com/nick-croft/ + Fri, 02 Nov 2012 17:27:41 +0000 + bgardner + http://www.genesisframework.com/?p=286 + + + + 286 + 2012-11-02 17:27:41 + 2012-11-02 17:27:41 + open + open + nick-croft + publish + 0 + 6 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Lauren Mancke + http://www.genesisframework.com/josh-byers/ + Fri, 02 Nov 2012 17:27:41 +0000 + bgardner + http://www.genesisframework.com/?p=287 + + + + 287 + 2012-11-02 17:27:41 + 2012-11-02 17:27:41 + open + open + josh-byers + publish + 0 + 3 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Get Genesis Now! + http://www.genesisframework.com/get-genesis-now/ + Thu, 11 Apr 2013 21:38:03 +0000 + bgardner + http://www.genesisframework.com/?p=392 + + + + 392 + 2013-04-11 21:38:03 + 2013-04-11 21:38:03 + open + open + get-genesis-now + publish + 0 + 14 + nav_menu_item + + 0 + + + _menu_item_url + + + + _menu_item_xfn + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_type + + + + + Sample Post With Headlines + http://www.genesisframework.com/headlines/ + Sun, 01 Sep 2013 01:52:58 +0000 + bgardner + http://demo.studiopress.com/genesis/?p=5 + + Headline 1 +

    Headline 2

    +

    Headline 3

    +

    Headline 4

    +
    Headline 5
    +
    Headline 6
    ]]>
    + + 5 + 2013-09-01 01:52:58 + 2013-09-01 01:52:58 + open + open + headlines + publish + 0 + 0 + post + + 0 + + + + + + + + + + + + + + + + + _edit_last + + + + _wp_old_slug + + +
    + + Sample Post With an Ordered List + http://www.genesisframework.com/ordered-list/ + Sun, 01 Sep 2013 01:54:32 +0000 + bgardner + http://demo.studiopress.com/genesis/?p=9 + + +
  • Ordered list item #1
  • +
  • Ordered list item #2
  • +
  • Ordered list item #3
  • +
  • Ordered list item #4
  • +
  • Ordered list item #5
  • + + +This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind. + +This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind. This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.]]>
    + + 9 + 2013-09-01 01:54:32 + 2013-09-01 01:54:32 + open + open + ordered-list + publish + 0 + 0 + post + + 0 + + + + _edit_last + + + + _wp_old_slug + + +
    + + Sample Post With an Unordered List + http://www.genesisframework.com/unordered-list/ + Sun, 01 Sep 2013 01:54:48 +0000 + bgardner + http://demo.studiopress.com/genesis/?p=11 + + +
  • Unordered list item #1
  • +
  • Unordered list item #2
  • +
  • Unordered list item #3
  • +
  • Unordered list item #4
  • +
  • Unordered list item #5
  • + + +This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind. + +This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind. This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.]]>
    + + 11 + 2013-09-01 01:54:48 + 2013-09-01 01:54:48 + open + open + unordered-list + publish + 0 + 0 + post + + 0 + + + + _edit_last + + + + _wp_old_slug + + +
    + + Sample Post With Image Centered + http://www.genesisframework.com/image-centered/ + Sun, 01 Sep 2013 01:55:21 +0000 + bgardner + http://demo.studiopress.com/genesis/?p=13 + + [/caption] + +This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind. + +This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind. This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind. + +This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind. + +This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind. This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.]]> + + 13 + 2013-09-01 01:55:21 + 2013-09-01 01:55:21 + open + open + image-centered + publish + 0 + 0 + post + + 0 + + + + _edit_last + + + + _wp_old_slug + + + + + Sample Post With Image Aligned Right + http://www.genesisframework.com/image-aligned-right/ + Sun, 01 Sep 2013 01:56:30 +0000 + bgardner + http://demo.studiopress.com/genesis/?p=16 + + [/caption] + +This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like. + +This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind. This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like. + +This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind. + +This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind. This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.]]> + + 16 + 2013-09-01 01:56:30 + 2013-09-01 01:56:30 + open + open + image-aligned-right + publish + 0 + 0 + post + + 0 + + + + _edit_last + + + + _wp_old_slug + + + + + Sample Post With Image Aligned Left + http://www.genesisframework.com/image-aligned-left/ + Sun, 01 Sep 2013 01:57:05 +0000 + bgardner + http://demo.studiopress.com/genesis/?p=18 + + [/caption] + +This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like. + +This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind. This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like. + +This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind. + +This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind. This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.]]> + + 18 + 2013-09-01 01:57:05 + 2013-09-01 01:57:05 + open + open + image-aligned-left + publish + 0 + 0 + post + + 0 + + + + _edit_last + + + + _wp_old_slug + + + + + Sample Post With Threaded Comments + http://www.genesisframework.com/threaded-comments/ + Sun, 01 Sep 2013 01:57:18 +0000 + bgardner + http://demo.studiopress.com/genesis/?p=20 + + + + 20 + 2013-09-01 01:57:18 + 2013-09-01 01:57:18 + open + open + threaded-comments + publish + 0 + 0 + post + + 0 + + + + _edit_last + + + + _wp_old_slug + + + + _encloseme + + + + _pingme + + + + _wp_format_url + + + + _wp_format_quote + + + + _format_audio_embed + + + + _wp_format_image + + + + _format_video_embed + + + + _format_quote_source_name + + + + _format_link_url + + + + _format_url + + + + _format_quote_source_url + + + + _format_image + + + + 2 + + brian@briangardner.com + http://www.briangardner.com/ + 76.29.60.137 + 2013-09-01 19:13:54 + 2013-09-01 19:13:54 + + 1 + + 0 + 2 + + + 3 + + brian@briangardner.com + http://www.briangardner.com/ + 76.29.60.137 + 2013-09-01 19:14:04 + 2013-09-01 19:14:04 + + 1 + + 2 + 2 + + + 4 + + brian@briangardner.com + http://www.briangardner.com/ + 76.29.60.137 + 2013-09-01 19:14:11 + 2013-09-01 19:14:11 + + 1 + + 0 + 2 + + + 5 + + brian@briangardner.com + http://www.briangardner.com/ + 76.29.60.137 + 2013-09-01 19:14:19 + 2013-09-01 19:14:19 + + 1 + + 4 + 2 + + + 6 + + brian@briangardner.com + http://www.briangardner.com/ + 76.29.60.137 + 2013-09-01 19:14:25 + 2013-09-01 19:14:25 + + 1 + + 5 + 2 + + + 7 + + brian@briangardner.com + + 76.29.60.137 + 2013-09-01 19:14:38 + 2013-09-01 19:14:38 + + 1 + + 0 + 2 + + + 2497 + + + http://demo.briangardner.com/blog/sample-trackback-2/ + 72.10.51.26 + 2013-08-27 00:27:38 + 2013-08-27 00:27:38 + + 1 + pingback + 0 + 0 + + akismet_result + + + + akismet_history + + + + akismet_history + + + + + 2496 + + + http://demo.briangardner.com/blog/sample-trackback/ + 72.10.51.26 + 2013-08-27 00:22:43 + 2013-08-27 00:22:43 + + 1 + pingback + 0 + 0 + + akismet_result + + + + akismet_history + + + + akismet_history + + + + + + Page Templates + http://www.genesisframework.com/templates/ + Sun, 15 Aug 2010 19:11:56 +0000 + bgardner + http://demo.studiopress.com/genesis + + + + 75 + 2010-08-15 19:11:56 + 2010-08-15 19:11:56 + open + closed + templates + publish + 0 + 0 + page + + 0 + + _edit_last + + + + _wp_page_template + + + + + Archive Page + http://www.genesisframework.com/templates/archive/ + Sun, 15 Aug 2010 19:12:26 +0000 + bgardner + http://demo.studiopress.com/genesis + + + + 77 + 2010-08-15 19:12:26 + 2010-08-15 19:12:26 + open + closed + archive + publish + 75 + 0 + page + + 0 + + _edit_last + + + + _wp_page_template + + + + + Blog Page + http://www.genesisframework.com/templates/blog/ + Sun, 15 Aug 2010 19:12:43 +0000 + bgardner + http://demo.studiopress.com/genesis + + + + 79 + 2010-08-15 19:12:43 + 2010-08-15 19:12:43 + open + closed + blog + publish + 75 + 0 + page + + 0 + + _edit_last + + + + _wp_page_template + + + + + Contact Page + http://www.genesisframework.com/contact/ + Sun, 15 Aug 2010 19:13:33 +0000 + bgardner + http://demo.studiopress.com/genesis + + Gravity Forms and is not included in the Genesis Framework. It is for display on this demo site - though we highly recommend using it.]]> + + 83 + 2010-08-15 19:13:33 + 2010-08-15 19:13:33 + open + closed + contact + publish + 0 + 11 + page + + 0 + + _edit_last + + + + _wp_page_template + + + + + Column Classes + http://www.genesisframework.com/columns/ + Thu, 03 Feb 2011 18:06:59 +0000 + bgardner + http://demo.studiopress.com/genesis/?page_id=181 + + Two-Columns + +
    +

    This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what exactly is on your mind.

    +
    + +
    +

    This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what exactly is on your mind.

    +
    + +
    + +

    Three-Columns

    + + + + + + + +
    + +

    Four-Columns

    + +
    +

    This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what exactly is on your mind.

    +
    + +
    +

    This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what exactly is on your mind.

    +
    + +
    +

    This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what exactly is on your mind.

    +
    + +
    +

    This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what exactly is on your mind.

    +
    + +
    + +

    Six-Columns

    + +
    +

    This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.

    +
    + +
    +

    This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.

    +
    + +
    +

    This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.

    +
    + +
    +

    This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.

    +
    + +
    +

    This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.

    +
    + +
    +

    This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.

    +
    ]]>
    + + 181 + 2011-02-03 18:06:59 + 2011-02-03 18:06:59 + open + closed + columns + publish + 0 + 0 + page + + 0 + + _edit_last + + + + _wp_page_template + + + + _genesis_layout + + +
    + + Sample Post With a Blockquote + http://www.genesisframework.com/blockquote/ + Sun, 01 Sep 2013 01:54:12 +0000 + bgardner + http://demo.studiopress.com/genesis/?p=7 + + This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind. + +This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind. + +This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind. This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.]]> + + 182 + 2013-09-01 01:54:12 + 2013-09-01 01:54:12 + open + open + blockquote + publish + 0 + 0 + post + + 0 + + + + _edit_last + + + + _wp_old_slug + + + + + Sample Post With a Table + http://www.genesisframework.com/sample-table/ + Sun, 01 Sep 2013 01:53:31 +0000 + bgardner + http://www.genesisframework.com/?p=447 + + + + +Developer +Location +Job Title + + +Brian Gardner +Illinois +Project Lead + + +Nathan Rice +South Carolina +Lead Developer + + +Ron Rennick +Canada +Lead Developer + + +Rafal Tomal +Illinois +Lead Designer + + +Lauren Mancke +South Carolina +Lead Designer + + + + +This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind. This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind. + +This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind. + +This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind. This is an example of a WordPress post, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many posts as you like in order to share with your readers what is on your mind.]]> + + 447 + 2013-09-01 01:53:31 + 2013-09-01 01:53:31 + open + open + sample-table + publish + 0 + 0 + post + + 0 + + + + _edit_last + + + +
    +