Friday, October 12, 2012

FREE Templates: Oxygen - Premium Portfolio, Business & Blog Theme

http://1.s3.envato.com/files/25302006/oxygen-screenshots/oxygen-screenshot-02-homepage.jpg

OXYGEN is fantastic looking blog/portfolio theme that is also very feature rich and customizable and available in six different colors. This theme provides all the main functionality you will need to present your products, work and yourself in an elegant and professional style.
OXYGEN is best suited for any business, portfolio, photography and personal sites.

Updates & Changes

Version 2.0.2 is available (September 12)
  • Homepage slider bug fix
Version 2.0.1 is available (August 4)
  • Added contact page.
Version 2.0 is available (July 27)
  • Completely new managing system
  • Easy to add images to slider
  • Compatible with wordpress 3.2
  • New gallery style!
Version 1.2.2 is available (March 15)
  • Updated coment closing option
  • Fixed html formatting on pages.
Version 1.2.1 is available (March 11)
  • Shortcode problem on pages fixed
Version 1.2 is available (March 10)
  • Added language (POT) file – now you can translate it much easier and faster.
  • Updated menu with second dropdown layer functionality.
  • Fixed header background problem.
  • Solved problem with the footer logo change.
Version 1.1 is available (March 4)
  • Added new orange color scheme!
  • Other minor issues solved

Features:

  • Portfolio – OXYGEN has three different styles of portfolios available – with one, two and three columns.
  • Gallery – OXYGEN has it’s own photo gallery, that is a rare feature in other themes. You also have the option of linking posts with galleries via smart shortcode based gallery preview box.
  • Homepage – This theme has great looking and extremely customizable homepage. You have the option of using one static picture, or a slider. If you feel more ascetic, you can use none of these and just stick with info blocks and text areas.
  • Blog – OXYGEN provides you with everything you need for easy blogging – auto thumbnail generation (using WordPress featured pictures or just grabbing the first picture of post), resizing pictures and videos with JavaScript that are too large. It even allows you to filter stuff from first blog pages, while still showing the full text. You even get a slider! The blog is indeed feature rich!
  • Colors – OXYGEN comes in six different colors.
  • Menu – You have the option of choosing between light and dark menu types while keeping consistent link colors with chosen theme color scheme.
  • Widgets – OXYGEN comes with five custom widgets, that allow you do whatever you want with your sidebar.
  • Shortcodes – OXYGEN has more than 30 handy shortcodes, including buttons, spacers, quotes and layout columns, that will give you greater power over your posts.

Saturday, September 1, 2012

Free Website Template Amplifier Business & Portfolio Template

 

Features

  • Clean but powerful design
  • 960 Grid System
  • HTML5 doctype and fancy CSS3 (clean and efficient)
  • Flexible home page (move and replace sections with the grid system )
  • Position social media icons at the top, bottom, or both! (Your clients will love that)
  • Fancybox Images (not just on the portfolio!)
  • Professional Quality Pricing Tables (see a Dribbble shot of what you’re getting <a href=” ”>here)
  • 3 slider options (Content Slider, Nivo Slider, or no slider at all)
  • 4 Portfolio variations supporting images and video (Youtube, Vimeo, Dailymotion)
  • Packaged Google Fonts + web safe fonts (customize from the theme options panel)
  • Fully layered PSD ’s (home, logo, buttons, etc.)
  • One-on-one author support

Color Variations

  • Black
  • Dark Blue
  • Light Blue
  • Dark Green
  • Light Green
  • Dark Orange
  • Light Orange
  • Dark Pink
  • Light Pink
  • Dark Red
  • Light Red

Tuesday, August 28, 2012

Free Site Template Zeepry - Simple Minimalist Template

Update – Ver 1.5.1 – August 06, 2012

  • IE9 /IE8 Errors Fixed
  • send.php Included

Update – Ver 1.5 – August 01, 2012

  • More HTML Pages
  • Some HTML Errors Fixed

Update – Ver 1.1 – April 28, 2011

  • Updated Documentation
  • Some HTML Errors Fixed
Zeepry is an awesome simple minimalist HTML template which could be suitable for almost all kinds of business .You can use it as Business template, Your personal portfolio or even a Blog. It’s comes with valid well written code, working contact form, google maps and much more.

Features

  • 17 HTML Pages:Homepage, Homepage Nivo Slider, About us, Our Team, Job Opportunities,Our Services,Services Item,Clients Testimonials,Typography,Portfolio,Portfolio Three Columns,Portfolio Four Columns, Blog,Blog Post,Contact
  • Grid layout 940px – easy to customize
  • Working Google Maps
  • Working Contact Form
  • Cool JQuery Effects
    • 3 level dropdown menu
    • Anything Content Slider
    • Cycle Content Slider
    • Scroll to top control
    • Scroll to anchor
    • Simple Tooltips
    • Nivo Slider
    • Style Switcher
    • Jquery Form Validation
    • Twitter Posts
  • PSD Included
  • Full Documentation
  • 8 Backgrounds
  • 5 Color Schemes
  • Valid HTML
  • SEO Friendly Template
  • + Landing Page

Demo

Live demo is encrypted for security measures,but download version has properly formatted and well commented code..
themes.trendywebstar.com/Zeepry/
Well Formatted Code Screenshot

Documentation / Support

I’m happy to assist customer with any problems with my theme.The item documentation is extensive and the source code is properly commented and formatted, and it’s easy to customize.Template has Valid XHTML + the code is properly commented and formatted

Sunday, July 8, 2012

Free Alexia Castillo WordPress Template

Click the image for the free download!

  • Powerful and minimal theme options page simple to use.
  • Unlimited skins
  • Wordpress 3.0 menu support
  • CUSTOM SIDEBAR
  • Custom Taxonomy Portfolios
  • Powerful shortcodes
  • Shortcode Generator
  • Post-thumbnail
  • Video support in Portfolio
  • Dynamic thumbnail resizing
  • 2 Column Fixed Layout
  • Jquery Masonry plugin
  • Jqueryslidemenu drop down menu
  • Well commented code for all pages.
  • PSD files for customizing top header, logo, view more buttons.
  • HTML document file

 

Tuesday, December 20, 2011

Email Harvesting with PHP and Javascript

We can scrape emails using the prototype library and php.. like so..

1:  <script src="prototype.js"></script>  
2:  <script>  
3:       function scrapeEmails(url)  
4:       {  
5:            var notice = $('notice');  
6:            var url = 'proxy.php?url=' + encodeURIComponent(url);  
7:            new Ajax.Request(url,  
8:            {  
9:                 method: 'get',  
10:                 onSuccess: function(transport)  
11:                 {  
12:                      var markdown = transport.responseText;  
13:                      markdown.gsub(/\w+@\w+[.]\w+/g, function(matches)  
14:                      {  
15:                           //var emails = matches.split(',');  
16:                           for(i=0;i<matches.length;i++)  
17:                           {  
18:                                notice.insert(matches[i] + "<br/>");  
19:                           }  
20:                      });  
21:                 },  
22:                 onFailure: function(transport)  
23:                 {  
24:                      notice.update(transport.responseText);  
25:                 }  
26:            });  
27:       }  
28:  </script>  

And the proxy.php ifile (while vulnerable to file inclusion at this point, please secure your own scripts and stop bitching at me)

1:  <?php  
2:  $url = $_GET['url'];  
3:  $content = file_get_contents($url);  
4:  header('Content-type: text/xml');  
5:  echo $content;  
6:  ?>  

And use it like this..

1:  <body>  
2:       <input type="text" value="http://www.dotfart.com/quiz/emails.txt" size="80" id="url">  
3:       <input type="button" value="do it" onclick="scrapeEmails(document.getElementById('url').value);">  
4:       <hr/>  
5:       <div id="notice"></div>  
6:  </body>  

Toggling DIV's with Prototype

1:  <script src="prototype.js"></script>  
2:  <script>  
3:       //exmaple: toggleDivs('myDiv,OtherDiv');  
4:       function toggleDivs(divs)  
5:       {  
6:            var divSplit = divs.split(",");  
7:            for(i=0;i<divSplit.length;i++)  
8:            {  
9:                 var d = $(divSplit[i]);  
10:                 if($(d).visible())  
11:                 {  
12:                      d.hide();  
13:                 } else {  
14:                      d.show();  
15:                 }  
16:            }  
17:       }  
18:       //example: checkForm('myForm');  
19:       function checkForm(frm)  
20:       {  
21:            allFields = Form.getElements("myForm");  
22:            for(i=0;i<allFields.length;i++)  
23:            {  
24:                 if(allFields[i].value == "")  
25:                 {  
26:                      $(allFields[i]).addClassName('error');  
27:                 } else {  
28:                      $(allFields[i]).removeClassName('error')  
29:                 }  
30:            }  
31:       }  
32:  </script>  

Simple Form Validation with Prototype

1:  <script src="prototype.js"></script>  
2:  <script>  
3:    //example: checkForm('myForm');  
4:    function checkForm(frm)  
5:    {  
6:      allFields = Form.getElements("myForm");  
7:      for(i=0;i<allFields.length;i++)  
8:      {  
9:        if(allFields[i].value == "")  
10:        {  
11:          $(allFields[i]).addClassName('error');  
12:        } else {  
13:          $(allFields[i]).removeClassName('error')  
14:        }  
15:      }  
16:    }  
17:  </script>