Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Twitter-bootstrap GS
#8
This theme works well...i made some improvements to the version i'm using, namely to separate out the footer into an include, and adjust some of the css to play nicely with p01 contact.

also, there is a new plugin coming out called shortcodes (https://github.com/n00dles/gs_shortcodes), and i'll hopefully be creating shortcodes for some of the bootstrap plugins (toggles, accordions etc..);

here is a shortcode that will render the standard bootstrap tabs: (put this in your functions.php - wrap in php tags)

Code:
// Twitter Bootstrap Tabs grabbed from www.friiitz.com, tweaked by alienee2
/* tabgroup */
add_shortcode( 'tabgroup', 'tabgroup' );
function tabgroup( $atts, $content ){
    $GLOBALS['tab_count'] = 0;
    do_shortcode( $content );

        if( is_array( $GLOBALS['tabs'] ) ){
        foreach( $GLOBALS['tabs'] as $tab ){
        $tab_count = $tab_count+1;
        $tabs[] = '<li class="'.$tab['state'].'"><a href="#tab'.$tab_count.'" data-toggle="tab">'.$tab['title'].'</a></li>';
        $panes[] = '<div class="tab-pane fade '.$tab['state'].'" id="tab'.$tab_count.'">'.$tab['content'].'</div>';
        }
        $return = "\n".'<div><ul class="nav nav-tabs">'.implode( "\n", $tabs ).'</ul>'."\n".'<div class="tab-content">'.implode( "\n", $panes ).'</div></div>'."\n";
        }
        return $return;
}

/* tabs */
add_shortcode( 'tab', 'tabs' );
function tabs( $atts, $content ){
    extract(shortcode_atts(array(
    'title' => 'Tab %d',
    'state' => ''
    ), $atts));
    
    $x = $GLOBALS['tab_count'];
    $GLOBALS['tabs'][$x] = array(
        'title' => sprintf( $title, $GLOBALS['tab_count'] ),
        'state' => sprintf( $state, $GLOBALS['tab_count'] ),
        'content' =>  $content );
    $GLOBALS['tab_count']++;
}

this is how you would use the tabs shortcode within your editor:

[tabgroup]

[tab state="active in" title="My Crazy Tab"] Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.[/tab]

[tab title="My Another Tab"]

Food truck fixie locavore, accusamus mcsweeney's marfa nulla single-origin coffee squid. Exercitation +1 labore velit, blog sartorial PBR leggings next level wes anderson artisan four loko farm-to-table craft beer twee. Qui photo booth letterpress, commodo enim craft beer mlkshk aliquip jean shorts ullamco ad vinyl cillum PBR. Homo nostrud organic, assumenda labore aesthetic magna delectus mollit. Keytar helvetica VHS salvia yr, vero magna velit sapiente labore stumptown. Vegan fanny pack odio cillum wes anderson 8-bit, sustainable jean shorts beard ut DIY ethical culpa terry richardson biodiesel. Art party scenester stumptown, tumblr butcher vero sint qui sapiente accusamus tattooed echo park.[/tab]

[tab title="Another Tab"] Etsy mixtape wayfarers, ethical wes anderson tofu before they sold out mcsweeney's organic lomo retro fanny pack lo-fi farm-to-table readymade. Messenger bag gentrify pitchfork tattooed craft beer, iphone skateboard locavore carles etsy salvia banksy hoodie helvetica. DIY synth PBR banksy irony. Leggings gentrify squid 8-bit cred pitchfork. Williamsburg banh mi whatever gluten-free, carles pitchfork biodiesel fixie etsy retro mlkshk vice blog. Scenester cred you probably haven't heard of them, vinyl craft beer blog stumptown. Pitchfork sustainable tofu synth chambray yr.[/tab]

[/tabgroup]
Reply


Messages In This Thread
Twitter-bootstrap GS - by lucamusolesi - 2012-04-15, 23:55:21
RE: Twitter-bootstrap GS - by lucamusolesi - 2012-11-14, 02:18:42
Two question... - by jlm - 2012-11-15, 02:25:54
RE: Two question... - by lucamusolesi - 2012-11-15, 02:37:52
RE: Twitter-bootstrap GS - by oratoran - 2012-11-15, 00:50:57
RE: Twitter-bootstrap GS - by shawn_a - 2012-11-15, 10:18:03
RE: Twitter-bootstrap GS - by alexd0001 - 2012-12-07, 06:39:41
RE: Twitter-bootstrap GS - by lucamusolesi - 2012-12-11, 03:38:25
RE: Twitter-bootstrap GS - by kazu - 2012-12-14, 15:31:01
RE: Twitter-bootstrap GS - by lucamusolesi - 2012-12-14, 17:56:41
RE: Twitter-bootstrap GS - by balazsnagy - 2013-01-13, 02:13:26
RE: Twitter-bootstrap GS - by daguy - 2013-01-14, 04:25:40
RE: Twitter-bootstrap GS - by lucamusolesi - 2013-01-14, 04:44:48
RE: Twitter-bootstrap GS - by osdesk1 - 2013-01-22, 09:16:50
RE: Twitter-bootstrap GS - by beyerservice - 2013-02-19, 21:51:26
RE: Twitter-bootstrap GS - by PrplHaz4 - 2013-04-19, 02:26:53
RE: Twitter-bootstrap GS - by lucamusolesi - 2013-04-19, 02:29:49
RE: Twitter-bootstrap GS - by PrplHaz4 - 2013-04-19, 04:11:24
RE: Twitter-bootstrap GS - by PrplHaz4 - 2013-04-19, 07:25:08
RE: Twitter-bootstrap GS - by PrplHaz4 - 2013-04-24, 06:53:35
RE: Twitter-bootstrap GS - by lucamusolesi - 2013-04-24, 06:55:53
RE: Twitter-bootstrap GS - by shawn_a - 2013-04-25, 00:06:30
RE: Twitter-bootstrap GS - by PrplHaz4 - 2013-04-25, 00:22:38
RE: Twitter-bootstrap GS - by lucamusolesi - 2013-04-25, 03:20:27
RE: Twitter-bootstrap GS - by bandrzej - 2013-05-01, 03:52:35
RE: Twitter-bootstrap GS - by Rene - 2013-05-16, 23:53:45
RE: Twitter-bootstrap GS - by ability - 2013-05-24, 06:26:32
RE: Twitter-bootstrap GS - by Rene - 2013-05-24, 21:15:14
RE: Twitter-bootstrap GS - by Rene - 2013-05-28, 20:46:15
RE: Twitter-bootstrap GS - by shawn_a - 2013-06-06, 07:37:40
RE: Twitter-bootstrap GS - by Rene - 2013-06-06, 16:02:47
RE: Twitter-bootstrap GS - by goredon0 - 2013-08-06, 04:12:12
RE: Twitter-bootstrap GS - by stryker - 2013-11-12, 13:22:05
RE: Twitter-bootstrap GS - by stryker - 2013-11-12, 18:09:54
RE: Twitter-bootstrap GS - by stryker - 2013-11-12, 20:01:28
RE: Twitter-bootstrap GS - by stryker - 2013-11-13, 05:59:37
RE: Twitter-bootstrap GS - by shawn_a - 2013-11-13, 07:10:48
RE: Twitter-bootstrap GS - by stryker - 2013-11-13, 07:18:21
RE: Twitter-bootstrap GS - by shawn_a - 2013-11-13, 07:20:24
RE: Twitter-bootstrap GS - by n00dles101 - 2013-11-13, 07:43:03
RE: Twitter-bootstrap GS - by stryker - 2013-11-13, 08:13:21
RE: Twitter-bootstrap GS - by n00dles101 - 2013-11-13, 08:17:11
RE: Twitter-bootstrap GS - by stryker - 2013-11-13, 08:52:37
RE: Twitter-bootstrap GS - by n00dles101 - 2013-11-13, 08:55:03
RE: Twitter-bootstrap GS - by stryker - 2013-11-13, 17:27:02
RE: Twitter-bootstrap GS - by plutek - 2014-01-22, 01:31:17
RE: Twitter-bootstrap GS [SOLVED] - by salvamaine - 2016-02-13, 20:24:46
RE: Twitter-bootstrap GS - by kazu2015 - 2016-03-16, 23:08:34
Twitter-bootstrap GS - by shawn_a - 2012-04-16, 00:26:39
Twitter-bootstrap GS - by lucamusolesi - 2012-04-16, 00:44:40
Twitter-bootstrap GS - by jdkarate - 2012-04-23, 05:25:15
Twitter-bootstrap GS - by lucamusolesi - 2012-04-23, 06:17:23
Twitter-bootstrap GS - by fugo - 2012-05-02, 12:09:18
Twitter-bootstrap GS - by lucamusolesi - 2012-05-03, 01:18:08
Twitter-bootstrap GS - by alienee2 - 2012-05-14, 09:23:53
Twitter-bootstrap GS - by lucamusolesi - 2012-05-15, 00:06:29
Twitter-bootstrap GS - by fugo - 2012-05-21, 07:10:16
Twitter-bootstrap GS - by alienee2 - 2012-05-23, 10:22:45
Twitter-bootstrap GS - by simon - 2012-05-30, 02:37:53
Twitter-bootstrap GS - by shawn_a - 2012-06-06, 07:44:30
Twitter-bootstrap GS - by lucamusolesi - 2012-06-06, 15:18:48
Twitter-bootstrap GS - by shawn_a - 2012-06-06, 23:02:02
Twitter-bootstrap GS - by lucamusolesi - 2012-06-06, 23:08:36
Twitter-bootstrap GS - by Timbow - 2012-06-07, 19:22:59
Twitter-bootstrap GS - by shawn_a - 2012-06-08, 06:15:13
Twitter-bootstrap GS - by shawn_a - 2012-06-08, 06:16:30
Twitter-bootstrap GS - by pier - 2012-08-08, 19:58:37
Twitter-bootstrap GS - by Mateng - 2012-08-08, 23:28:05
Twitter-bootstrap GS - by sal - 2012-08-23, 08:28:15



Users browsing this thread: 2 Guest(s)