$html = file_get_contents('https://freelance.ua/');
phpQuery::newDocument($html);
$jobsList = pq('.l-projectList');
foreach ($jobsList as $item) {
$item = pq($item);
if ($item->find('.fa-map-marker ')) {
print_r($item->html());
}
}
phpQuery::unloadDocuments();