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.

22 lines
837 B

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