Файл: cobisja/BootHelp/Guide/content/zfooter.php
Строк: 140
<?php
/**
* BootHelp - PHP Helpers for Bootstrap
*
* (The MIT License)
*
* Copyright (c) 2015 Jorge Cobis <jcobis@gmail.com / http://twitter.com/cobisja>.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
use cobisjaBootHelpBootHelp;
echo BootHelp::contentTag('div', ['class'=>'row footer'], function(){
return [
BootHelp::thumbnail([
'column_class'=>'col-sm-4',
'src'=>'Guide/img/cobisja.png',
'image'=>['shape'=>'circle'],
'class'=>'text-center'
],
function(){
return BootHelp::contentTag('div', ['class'=>'caption'], function(){
return [
BootHelp::contentTag('h3', 'I'm Cobis aka cobisja'),
BootHelp::contentTag('p', '"I am passionate software developer, '
. 'always with a good attitude and a big smile to facing any challenge, '
. 'destined to help you solve your problems and always eager to share my '
. 'experience with you."' ),
BootHelp::contentTag('p', function(){
return [
'email: ',
BootHelp::linkTo('jcobis@gmail.com', ['href'=>'mailto:jcobis@gmail.com']),
];
}),
BootHelp::contentTag('p', function(){
return [
'twitter: ',
BootHelp::linkTo('@cobisja', ['href'=>'https://twitter.com/cobisja']),
];
})
];
});
}),
BootHelp::thumbnail([
'column_class'=>'col-sm-4',
'src'=>'Guide/img/test.png',
'image'=>['class'=>'boothelp-img'],
'class'=>'text-center'
],
function(){
return BootHelp::contentTag('div', ['class'=>'caption'], function(){
return [
BootHelp::contentTag('h3', 'Bootstrap + PHP = <strong>BootHelp</strong> :-D', ['class'=>'text-center']),
BootHelp::contentTag('p', 'Get the best of two worlds: The beauty of Bootstrap using the power of PHP.' ),
BootHelp::contentTag('p', function(){
return [
'Live guide: ',
BootHelp::linkTo('http://boothelp-guide.code389.com.ve', ['href'=>'http://boothelp-guide.code389.com.ve']),
];
}),
BootHelp::contentTag('p', function(){
return [
'Live demo: ',
BootHelp::linkTo('http://boothelp-demo.code389.com.ve', ['href'=>'http://boothelp-demo.code389.com.ve']),
];
})
];
});
}),
BootHelp::thumbnail([
'column_class'=>'col-sm-4',
'src'=>'Guide/img/safari.png',
'image'=>['class'=>'boothelp-img'],
'class'=>'text-center'
],
function(){
return BootHelp::contentTag('div', ['class'=>'caption'], function(){
return [
BootHelp::contentTag('h3', 'Keep in touch and check for new <strong>BootHelp</strong> releases', ['class'=>'text-center']),
BootHelp::contentTag('p', 'We are working hard to add new Bootstrap's components' ),
BootHelp::contentTag('p', function(){
return [
'Skype: ',
BootHelp::linkTo('cobisjax'),
];
})
];
});
})
];
});