Free Bootstrap Template With HTML & PSD: Bootstrapper
For any web designer/developer willing to build a quality and good-looking website quickly, Bootstrap is probably the 1st option that comes to mind.
It is an impressive front-end framework with the wide range of elements + components it includes and the consistency (in means of design + functionality) of each of them.
Today, we are releasing an amazing and exclusive freebie for WRD readers: a free Bootstrap template: Bootstrapper which is designed by the popular template marketplace FlashMint and comes with the HTML5-CSS3 + PSD source files.
Bootstrapped is a perfect fit for the website of any creative individual, company or app/service: like designers, photographers, developers, web agencies, a product, etc. Almost any use.
It is responsive and includes a slider in the frontpage to showcase any content wanted and a slider of featured works + latest news.
A portfolio page exists with a choice of 2-3-4 columns where items can be categorized and sorted with the popular Isotope interface.
Also, there are pages for About, Contact and a possible blog (listing and entry pages).
And, a footer completes the design with the ability to present the latest tweets, a quick contact form, testimonials and Flickr stream. Of course, you can customize them however you wish.
Like mentioned, the Bootstrapped is brought to WRD readers freely by FlashMint, thanks very much to them. And, if you are hunting for more Bootstrap templates, they have a pretty big library of professional Bootstrap templates.
The license
Bootstrapper is free to use in both personal and commercial projects without the need of any attribution. However, it can not be redistributed (and please link to this post for any links to downloads, thanks very much).
- Tags:
Responsive
- Filed under: Goodies, Other License, Templates
- 14 Comments














14 Responses for "Free Bootstrap Template With HTML & PSD: Bootstrapper"
Hi, i couldnt download the file.. even with my email registered in newsletter. Tkz
Roberto
Just received the email. tkz
thx for giving nice template free
The newsletter form doesn’t work and i cannot download the template
@Johnny,
I believe that was a temporary issue and should be fixed now.
It works
awesome guys thanks
This is so awesome, thank you so much! However- the newsletter sign up isn’t working so I cannot download. Can you please help?
The photos are superimposed and not fully visible with google chrome (mac) when you try to “refresh” this page http://www.webresourcesdepot.com/wp-content/uploads/file/free_bootstrap_template/portfolio_4columns.html
Working fine with the portfolio button…
Fix ;
Replace
$container.isotope({ itemSelector : ‘.element’ });
By
$container.imagesLoaded(function(){
$container.isotope({ itemSelector : ‘.element’ });
});
in sorting.js
Sorry, missing comment’;
Very good job!
The photos of the portfolio are not resize correctly when reducing the size of the window.
It is necessary to refresh the page to get the images to the right size after having reduced the size of the window.
Update fix ;
Replace
$container.imagesLoaded(function(){
$container.isotope({ itemSelector : ‘.element’ });
});
by
$container.imagesLoaded(function(){
$(window).smartresize(function(){
$container.isotope({
resizable: false, // disable normal resizing
masonry: { columnWidth: $container.width() / 4 },
itemSelector : ‘.element’
});
}).smartresize();
});
and replace
if ( key === ‘layoutMode’ && typeof changeLayoutMode === ‘function’ ) {
changeLayoutMode( $this, options )
} else {
$container.imagesLoaded(function(){
$container.isotope( options );
});
}
by
if ( key === ‘layoutMode’ && typeof changeLayoutMode === ‘function’ ) {
changeLayoutMode( $this, options )
} else {
$container.imagesLoaded(function(){
$(window).smartresize();
});
}
in js/sort.js again
Sorry, supersedes my previous comment
The photos of the portfolio are not resize correctly when reducing the size of the window.
It is necessary to refresh the page to get the images to the right size after having reduced the size of the window.
fix for a beautiful resize window ;
replace ;
$container.imagesLoaded(function(){
$container.isotope({ itemSelector : ‘.element’ });
});
by
$(window).smartresize(function(){
$container.isotope({
resizable: false, // disable normal resizing
masonry: { columnWidth: $container.width() / 4 },
itemSelector : ‘.element’
});
}).smartresize();
$container.imagesLoaded(function(){
$(window).smartresize();
});
in js/sorting.js
This is great thanks! The Keep In Touch at the bottom does not work. Can you advise how to get it working?? Thanks.
On mobile device, elements in “projects” class portoflio are not centered.
add this in theme.css ;
.projects {
text-align: center;
}