Blogger theme

Component type

theme

Maintenance status

Development status

Downloads

22932

Component created

Component changed

Blogger theme is a great looking Drupal 7 theme that has a very clean, sleek and minimal design yet it is still pretty modern and elegant looking. This theme has a very minimalistic design that is ideal for bloggers, portfolios, freelancers, and entrepreneurs.

Its a very sleek solution that will make any site really stand out and look fantastic. The theme is completely responsive, and has been tested on the iPhone and iPad for optimal performance. This is an all around great theme, useful for almost any project.

Incubator Prograde

Component type

theme

Maintenance status

Development status

Downloads

3458

Component created

Component changed

Incubator prograde 1.x is a sub-theme of Omega 3, designed for use with the Baha'i Incubator distribution. As are all Omega 3 sub-themes, it is adaptive for different screen sizes and mobile devices. It is integrated with color module, and also has many skin options available through the Skinr Lite module.

This theme probably will not be ported to Drupal 8.

Multipurpose Theme

Component type

theme

Maintenance status

Development status

Downloads

57620

Component created

Component changed

Multipurpose theme is an elegant and flat responsive Drupal theme design by Devsaran. This theme could easily be used for a blog, small business, portfolio or a variety of other websites. The theme was designed using flat elements for the header, navigation, buttons and more. This sharp design is elegant, modern and functional. The clean elements are easy for users to understand and make navigating your website a pleasure.

Fetch Html format data from different site link for using cURL.

Component type

theme

Maintenance status

Development status

Component created

Component changed

function pr($array)
{
	echo "<pre>";
		print_r($array);
	echo "</pre>";
}


function regexExtract($text, $regex, $nthValue) 
{	
	if (preg_match($regex, $text, $regs)) { 
	 $result = $regs[$nthValue]; 
	} 
	else { 
	 $result = ""; 
	} 
	return $result; 
} 
ini_set('max_execution_time', 3000000);
require_once('simple_html_dom.php');
$url  = 'URL';//putting on Site url link
if(isset($_GET['page'])){
$page = $_GET['page'];
$postFields = array();
$ch = curl_init();
	curl_setopt($ch, CURLOPT_URL,$url);
	
	curl_setopt($ch, CURLOPT_HTTPHEAD