You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

23 lines
837 B

@model IEnumerable<Sevomin.Models.JobMiniViewModel>
@{
ViewBag.Title = "آگهی های استخدام";
}
<h2 class="rtl">آگهی های استخدام تازه</h2>
@if (!Request.IsAuthenticated) {
<p class="text-info rtl">
شما در سایت <a href="@Url.Action("Login", "Account")">وارد</a> نشده اید. برای اعلام آمادگی برای هرکدام از فرصت های شغلی، به سایت وارد شوید یا <a href="@Url.Action("Index", "Home")">ثبت نام</a> کنید.
</p>
}
<div class="row">
<div class="col-md-12">
@Html.Partial("JobList", Model)
</div>
</div>
@section Head{
<link rel="alternate" type="application/rss+xml" href="@Url.Action("RecentJobsRss")" title="فرصت های شغلی جدید در سومین">
}