'. '

'. sprintf( __( 'Thanks for installing BluePrint-Q %s Edition!', 'bpq' ), sales::edition_name() ). '

'. '
'. ''. '
'. '

'.__( 'Getting started', 'bpq' ).'

'. '

'.__( 'Here is some information that can help jumpstart your development.', 'bpq' ).'

'. '

'. '
'. '
'. '
'. '
'. landing_upgrade(). '
'. landing_setup(). landing_design(). landing_content(). '
'. '
'. landing_donate(). landing_help(). '
'. '
'. '
'. '
'. '
'. partner_link( 'BluePrint-Q', 'http://www.blueprintq.com' ). partner_link( 'Adobe Kuler', 'https://kuler.adobe.com/create/color-wheel/' ). partner_link( 'Bootstrap', 'http://getbootstrap.com/' ). partner_link( 'CSS3', 'http://en.wikipedia.org/wiki/CSS3#CSS_3' ). partner_link( 'Font Awesome', 'http://fortawesome.github.io/Font-Awesome/' ). partner_link( 'Google Fonts', 'http://www.google.com/fonts/' ). partner_link( 'HTML5', 'http://en.wikipedia.org/wiki/HTML5' ). partner_link( 'jQuery', 'http://jquery.com/' ). partner_link( 'Ski.Web', 'http://www.suleski.name/ski-web/' ). partner_link( 'Slider Revolution', 'http://themepunch.com/revolution/' ). partner_link( 'Visual Composer', 'http://demo.wpbakery.com/vc/' ). partner_link( 'WordPress', 'http://wordpress.org/' ). partner_link( 'WPML', 'http://wpml.org/' ). '
'. ''; /** * Generates the markup to be displayed in the content area. */ function landing_content() { // If using the architect edition, add links to special BluePrint-Q content. $links = array( '', '' ); if ( BPQ_EDITION >= 2 ) { $links = array( '
  • '. ''. ' '.__( 'Add testimonials', 'bpq' ). ''. '
  • ', '
  • '. ''. ' '.__( 'Add benefits', 'bpq' ). ''. '
  • ', ); } // Markup. return postbox_wrap_before( __FUNCTION__ ). '

    '.__( 'Write', 'bpq' ).'

    '. '
    '. '
    '. ''. '
    '. ''. '
    '. '
    '. postbox_wrap_after(); } /** * Generates the markup to be displayed in the design area. */ function landing_design() { return postbox_wrap_before( __FUNCTION__ ). '

    '.__( 'Design', 'bpq' ).'

    '. '
    '. '
    '. ''. '
    '. '
    '. postbox_wrap_after(); } /** * Generates the markup to be displayed in the donate area. */ function landing_donate() { // Do nothing if this is the architect edition. if ( BPQ_EDITION >= 2 ) { return ''; } // The markup for a PayPal button can be generated here: // https://www.paypal.com/us/cgi-bin/webscr?cmd=_flow&SESSION=MPy5cGVVRxB_nxFQgxJXewQF0tm81DOpBuHhEpvCqbgYcv9h0FMAbtPn6kW&dispatch=5885d80a13c0db1f8e263663d3faee8d69a70501aadbc2ff6a1e7e8cc0df6b0b $paypal = '
    '. ''. ''. ''. ''. ''. ''. ''. '
    '; // Markup. return postbox_wrap_before( __FUNCTION__ ). '

    '.__( 'Contribute', 'bpq' ).'

    '. '
    '. '
    '. ''. '
    '. '
    '. postbox_wrap_after(); } /** * Generates the markup to be displayed in the help area. */ function landing_help() { // If using the premium edition, add resource links for the premium plugins. $aux = ''; if ( BPQ_EDITION >= 3 ) { $aux = '
    '. '

    '. __( 'The packaged premium plugins have their own documentation too.', 'bpq' ). '

    '. '
  • '. ''. ' '.__( 'Revolution Slider docs', 'bpq' ). ''. '
  • '. '
  • '. ''. ' '.__( 'Visual Composer docs', 'bpq' ). ''. '
  • '; } return postbox_wrap_before( __FUNCTION__ ). '

    '.__( 'Help', 'bpq' ).'

    '. '
    '. '
    '. ''. '
    '. '
    '. postbox_wrap_after(); } /** * Generates the markup to be displayed in the included area. */ function landing_included() { } /** * Generates the markup to be displayed in the setup area. */ function landing_setup() { return postbox_wrap_before( __FUNCTION__ ). '

    '.__( 'Setup', 'bpq' ).'

    '. '
    '. '
    '. '
    '. ''. '
    '. '
    '. ''. '
    '. '
    '. '
    '. postbox_wrap_after(); } /** * Generates the markup to be displayed in the upsell area. */ function landing_upgrade() { // Do nothing if this is the architect edition. if ( BPQ_EDITION >= 2 ) { return ''; } // The content in this postbox is very dynamic - make shortcuts. $title = sprintf( __( 'Download the %s Edition', 'bpq' ), sales::edition_name( 2 ) ); $tag = sprintf( __( 'Enhance the BluePrint-Q theme design and development experience with '. 'additional features. '. 'It\'s a wonderful way to build websites and applications. '. 'Download it today!', 'bpq' ), welcome::url_pricing(), sales::url_buy( 2 ) ); // Put together the markup. return postbox_wrap_before( __FUNCTION__ ). '

    '.$title.'

    '. '
    '. '
    '. ''. '
    '. '
    '. postbox_wrap_after(); } /** * Produces a link/image combo for partners that typically get displayed * in a bar on the admin landing page. * * @param string $name Filename only (no extension and no path) * @param string $url Full URL to the desired partner page * @return string */ function partner_link( $name, $url ) { return ''. ''. ''; } /** * The markup to get a postbox is complicated - putting this in one place. * * @param string $id Optional ID to give to the exterior container * @return string The desired markup */ function postbox_wrap_before( $id = '' ) { return '
    '. '
    '. '
    '; } /** * The markup to get a postbox is complicated - putting this in one place. * * @return string The desired markup */ function postbox_wrap_after() { return '
    '. '
    '. '
    '; } ?>