Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 www 1
<?php
2
use LeadersLinked\Library\Functions;
3
 
4
$this->inlineScript()->captureStart();
5
echo <<<JS
6
jQuery( document ).ready(function( $ ) {
7
    $('#suggestions-list-job-suggestions').mCustomScrollbar({
8
        setHeight: '450px',
9
        axis:'y' // vertical and horizontal scrollbar
10
    });
11
});
12
JS;
13
$this->inlineScript()->captureEnd();
14
 
15
?>
16
 
17
<div class="suggestions-list" id="suggestions-list-job-suggestions">
18
	<div class="sd-title">
19
		<h3>LABEL_JOB_SUGGESTIONS</h3>
20
	</div><!--sd-title end-->
21
	<?php foreach($items as $item) :  ?>
22
 
23
	<div class="suggestion-usd ">
24
		<div class="sgt-text">
25
			<h4><?php echo trim($item['title']) ?></h4>
26
			<h4><?php echo trim($item['last_date_of_application']) ?></h4>
27
		</div>
28
		<span><a href="<?php echo $this->url('job/view', ['id' => $item['uuid'] ]) ?>"><i class="fa fa-external-link"></i></a></span>
29
	</div>
30
 
31
	<?php endforeach; ?>
32
</div>